Skip to content

Remove TagBot, easier to tag by hand #46

Remove TagBot, easier to tag by hand

Remove TagBot, easier to tag by hand #46

Workflow file for this run

name: Tests
on:
pull_request:
branches: [main]
paths: [ 'src/**', 'test/**', '.github/workflows/Tests.yml' ]
push:
branches: [main]
paths: [ 'src/**', 'test/**', '.github/workflows/Tests.yml' ]
tags: '*'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version: ['1.1', 'nightly']
os: [ubuntu-latest, windows-latest]
include:
# Julia 1.1 on macos x64
- os: macos-13
version: 1.1
# Julia nightly on macos ARM
- os: macos-latest
version: nightly
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1