various updates - improve test suite #211
Workflow file for this run
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: ci | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
CI: | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch}} | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.version == 'nightly' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- '1.6' # LTS (lowest supported `julia` version declared in `Project.toml`) | |
- '1' # latest stable | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
arch: [x64, x86] | |
exclude: | |
# Test 32-bit only on Linux | |
- os: macos-latest | |
arch: x86 | |
- os: windows-latest | |
arch: x86 | |
include: | |
- version: 'nightly' | |
os: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: ${{ matrix.version }} | |
- uses: julia-actions/cache@v1 | |
- uses: julia-actions/julia-buildpkg@latest | |
- uses: julia-actions/julia-runtest@latest | |
- uses: julia-actions/julia-processcoverage@latest | |
- uses: codecov/codecov-action@v3 | |
with: | |
file: lcov.info | |
Skip: | |
if: "contains(github.event.head_commit.message, '[skip ci]')" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Skip CI 🚫 | |
run: echo skip ci |