Skip to content

Commit

Permalink
Add check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
caspervonb committed Sep 25, 2024
1 parent 455bdf3 commit 7397b84
Showing 1 changed file with 86 additions and 0 deletions.
86 changes: 86 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
name: Check
on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
typecheck:
runs-on: ubuntu-latest
name: Typecheck
steps:
- name: Check out repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev
- name: Install mypy
run: |
pipenv install mypy
- name: Run mypy
run: |
pipenv run mypy
lint:
runs-on: ubuntu-latest
name: Lint
steps:
- name: Check out repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev
- name: Install ruff
run: |
pipenv install ruff
- name: Run ruff
run: |
pipenv run ruff check . --select E,F,I
format:
runs-on: ubuntu-latest
name: Format
steps:
- name: Check out repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev
- name: Install ruff
run: |
pipenv install ruff
- name: Run ruff
run: |
pipenv run ruff format . --check

0 comments on commit 7397b84

Please sign in to comment.