Bump actions/checkout from 3 to 4 (#269) #297
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: | |
# Skip intermediate builds: always. | |
# Cancel intermediate builds: only if it is a pull request build. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
test: | |
continue-on-error: ${{ matrix.version == 'nightly' }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
version: | |
- '1' | |
- '1.6' | |
os: | |
- ubuntu-latest | |
arch: | |
- x64 | |
- x86 | |
group: | |
- Interface | |
- Integrators | |
- Regression | |
exclude: # test 32bit only with Julia 1 but not LTS | |
- version: '1.6' | |
arch: x86 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: actions/cache@v3 | |
env: | |
cache-name: cache-artifacts | |
with: | |
path: ~/.julia/artifacts | |
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | |
restore-keys: | | |
${{ runner.os }}-test-${{ env.cache-name }}- | |
${{ runner.os }}-test- | |
${{ runner.os }}- | |
- uses: julia-actions/julia-buildpkg@latest | |
- uses: julia-actions/julia-runtest@latest | |
with: | |
coverage: ${{ matrix.version == '1' && matrix.arch == 'x64' }} | |
env: | |
GROUP: ${{ matrix.group }} | |
- uses: julia-actions/julia-processcoverage@v1 | |
if: matrix.version == '1' && matrix.arch == 'x64' | |
- uses: codecov/codecov-action@v3 | |
if: matrix.version == '1' && matrix.arch == 'x64' | |
with: | |
file: lcov.info | |
- uses: coverallsapp/github-action@master | |
if: matrix.version == '1' && matrix.arch == 'x64' | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: lcov.info | |
flag-name: group-${{ matrix.group }} # unique name for coverage report of each group | |
parallel: true | |
# combine coveralls coverage reports | |
finish: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true |