Skip to content

Commit

Permalink
Add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
terrorfisch committed Mar 9, 2024
1 parent d071815 commit 317e762
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "CI"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
run:
name: "tests & coverage"
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8

- name: Install hatch
run: |
python -m pip install hatch
- name: Tests
run: hatch run test

0 comments on commit 317e762

Please sign in to comment.