Skip to content

Commit

Permalink
Replace individual workflows with one "checks" workflow (#4)
Browse files Browse the repository at this point in the history
This uses re-actors/alls-green to make sure they all are passing, which makes
it simpler to configure the rules in GitHub for when a PR is allowed to be
merged.
  • Loading branch information
Tenzer authored Jun 13, 2024
1 parent cf994bd commit 45d9095
Show file tree
Hide file tree
Showing 5 changed files with 92 additions and 95 deletions.
91 changes: 91 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
---
name: Checks

on:
pull_request:
push:
branches:
- main

jobs:
mypy:
runs-on: ubuntu-24.04

steps:
- name: Checkout the code
uses: actions/checkout@v4

- name: Install Poetry
run: pipx install poetry

- name: Set up Python
uses: actions/setup-python@v5
with:
cache: poetry

- name: Install dependencies
run: poetry install

- name: Run mypy
run: poetry run mypy .

pre-commit:
runs-on: ubuntu-24.04

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5

- name: Pre-commit
uses: pre-commit/[email protected]

pytest:
runs-on: ubuntu-24.04

strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13-dev"

steps:
- name: Checkout the code
uses: actions/checkout@v4

- name: Install Poetry
run: pipx install poetry

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry

- name: Install dependencies
run: poetry install

- name: Run pytest
run: poetry run pytest

all-checks-passed:
if: always()

needs:
- mypy
- pre-commit
- pytest

runs-on: ubuntu-24.04

steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
31 changes: 0 additions & 31 deletions .github/workflows/mypy.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/pre-commit.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/pytest.yml

This file was deleted.

1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.12

0 comments on commit 45d9095

Please sign in to comment.