14 lines
317 B
YAML
14 lines
317 B
YAML
|
name: Pytest
|
||
|
# run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
pytest:
|
||
|
runs-on: python-3-alpine
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v3
|
||
|
- run: pip install -r requirements.txt
|
||
|
- run: pip install pytest
|
||
|
- run: pytest
|