wulkabot/.github/workflows/test.yml

25 lines
481 B
YAML
Raw Permalink Normal View History

2022-06-04 00:35:48 +02:00
name: Test with pytest
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Set up Python 3
uses: actions/setup-python@main
with:
2022-12-02 21:39:18 +01:00
python-version: "3.11"
2022-06-04 00:35:48 +02:00
- name: Install Poetry
run: curl https://install.python-poetry.org | python -
- name: Install dependencies
run: poetry install
- name: Run pytest
run: poetry run python -m pytest