Skip to content

Commit

Permalink
Create .github/workflows/python-app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoddemus authored Apr 3, 2023
1 parent 62deea5 commit 31c8ecb
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: tests

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


permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v3
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install -e .[test]
- name: Test
run: |
pytest

0 comments on commit 31c8ecb

Please sign in to comment.