Skip to content

Commit

Permalink
Merge pull request #7 from robertknight/github-action
Browse files Browse the repository at this point in the history
Add basic GitHub Actions CI workflow
  • Loading branch information
robertknight committed Jan 24, 2024
2 parents c9a90aa + b66fcaf commit 2d16768
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI
on:
pull_request:
push:
branches:
- 'main'
- 'ci/**'

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pipenv
run: pip install pipenv
- name: Install dependencies
run: pipenv install --dev
- name: Check formatting and types
run: pipenv run qa

0 comments on commit 2d16768

Please sign in to comment.