Skip to content

fixed wrong branch name for github actions 'master' -> 'main' #2

fixed wrong branch name for github actions 'master' -> 'main'

fixed wrong branch name for github actions 'master' -> 'main' #2

Workflow file for this run

name: Run tests
on:
pull_request:
branches:
- main
push:
branches:
- main
- develop
tags: '*'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
version:
- '1.6'
- '1' # automatically expands to the latest stable 1.x release of Julia
- 'nightly'
os:
- ubuntu-latest
- windows-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1