Run tests #91
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
push: | |
pull_request: | |
# Allow workflow to be triggered manually. | |
workflow_dispatch: | |
schedule: | |
# Run the CI at 00:10 every Sunday to receive warning of breaking changes in our dependencies. | |
- cron: '10 0 * * 0' | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
julia-version: ['1.6', '1', 'nightly'] | |
julia-arch: [x64, x86] | |
os: [ubuntu-latest] | |
include: | |
- os: macOS-latest | |
julia-arch: x64 | |
julia-version: nightly | |
- os: windows-latest | |
julia-arch: x64 | |
julia-version: nightly | |
- os: windows-latest | |
julia-arch: x86 | |
julia-version: nightly | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: ${{ matrix.julia-version }} | |
- uses: julia-actions/julia-buildpkg@latest | |
- uses: julia-actions/julia-runtest@latest |