Skip to content

Commit

Permalink
feat: test on push
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanholsteijn committed Feb 23, 2024
1 parent af1005d commit 872b615
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: build
"on": push
jobs:
build:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.9
- name: checkout
run: git fetch --prune --unshallow
- name: install environment
run: pip install pipenv
- name: run tests
run: make test

0 comments on commit 872b615

Please sign in to comment.