Skip to content

Commit

Permalink
Start github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dunossauro committed Aug 23, 2023
1 parent 2669d80 commit 4e1962c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Pipeline
on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.11.1'

- name: Install poetry
run: pipx install poetry

- name: Install dependencies
run: poetry install

- name: Run tests
run: poetry run task test --cov-report=xml

0 comments on commit 4e1962c

Please sign in to comment.