Skip to content

Add repository status page (#236) #280

Add repository status page (#236)

Add repository status page (#236) #280

Workflow file for this run

---
name: tox
on:
push:
branches: # any integration branch but not tag
- main
pull_request:
branches:
- main
jobs:
test:
# tests reusable tox workflow
uses: ./.github/workflows/tox.yml
with:
default_python: "3.10"
jobs_producing_coverage: 0
max_python: "3.13"
min_python: "3.10"
run_post: echo 'Running post'
run_pre: echo 'Running pre'
other_names: |
docs
lint
check: # This job does nothing and is only used for the branch protection
if: always()
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
push:
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/push.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}