Skip to content

Commit

Permalink
Merge branch 'main' into artifact-for-humans
Browse files Browse the repository at this point in the history
  • Loading branch information
garrison committed Sep 9, 2024
2 parents a0a1d37 + 076677f commit 43fc0c2
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Code coverage
name: Coverage

on:
push:
Expand All @@ -12,7 +12,7 @@ on:

jobs:
coverage:
name: coverage (${{ matrix.os }}, ${{ matrix.python-version }})
name: code coverage (${{ matrix.os }}, ${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Sphinx docs
name: Sphinx

on:
workflow_dispatch:
Expand All @@ -15,7 +15,7 @@ on:

jobs:
build:
name: Build docs
name: build docs
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
path: ./artifact

deploy:
name: Deploy docs
name: deploy docs
if: ${{ github.ref == 'refs/heads/stable/0.1' }}
needs: build
permissions:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint check
name: Lint

on:
push:
Expand All @@ -12,6 +12,7 @@ on:

jobs:
lint:
name: lint check
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test_development_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ on:

jobs:
tests:
name: development version tests (${{ matrix.os }}, ${{ matrix.python-version }})
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: [3.9, 3.12]
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test_latest_versions.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Latest version tests
name: Tests

on:
push:
Expand All @@ -14,6 +14,7 @@ on:

jobs:
tests:
name: latest version tests (${{ matrix.os }}, ${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test_minimum_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ on:

jobs:
tests:
name: minimum version tests (${{ matrix.os }}, ${{ matrix.python-version }})
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: [3.9]
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 43fc0c2

Please sign in to comment.