Merge pull request #90 from sumiya11/update #245
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: "Tests" | |
on: | |
pull_request: | |
push: | |
paths-ignore: | |
- "README.md" | |
- "Dockerfile" | |
- ".gitignore" | |
jobs: | |
run-tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
julia-version: ["1"] | |
julia-arch: [x64] | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v2 | |
- name: "Setup Julia" | |
uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.julia-version }} | |
arch: ${{ matrix.julia-arch }} | |
- name: "Build Package" | |
uses: julia-actions/julia-buildpkg@latest | |
- name: "Run tests" | |
uses: julia-actions/julia-runtest@latest |