Skip to content

Commit

Permalink
ci: improve naming scheme of CI
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed Aug 23, 2024
1 parent bb793b3 commit b279127
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ on:

jobs:
julia:
name: Test (${{ matrix.os }}, julia ${{ matrix.jlversion }})
name: test-${{ matrix.test-type }}-${{ matrix.os }}-jl${{ matrix.jlversion }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
arch: [x64] # x86 unsupported by MicroMamba
os: [ubuntu-latest, windows-latest, macos-latest]
jlversion: ['1','1.6']
test-type: ['unit']
steps:
- uses: actions/checkout@v2
- name: Set up Julia ${{ matrix.jlversion }}
Expand Down Expand Up @@ -48,10 +49,11 @@ jobs:
uses: julia-actions/julia-processcoverage@v1
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
if: ${{ matrix.test-type == 'unit' }}
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
python:
name: Test (${{ matrix.os }}, python ${{ matrix.pyversion }})
name: test-${{ matrix.test-type }}-${{ matrix.os }}-py${{ matrix.pyversion }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
Expand Down

0 comments on commit b279127

Please sign in to comment.