Skip to content

Commit

Permalink
Add initial GitHub Actions workflow YAML file.
Browse files Browse the repository at this point in the history
  • Loading branch information
emmiegit committed Jan 10, 2024
1 parent b925e2b commit fbf3753
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Python Build

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

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

- name: Install dependencies
run: pip install -r requirements.dev.txt

- name: MyPy
run: mypy bzhr

- name: Black
run: black --check bzhr

- name: isort
run: isort --check bzhr

0 comments on commit fbf3753

Please sign in to comment.