Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ on: [push, pull_request]

jobs:
test:
runs-on: debian-latest
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install system dependencies
run: |
sudo apt update
sudo apt install -y python3 python3-pip python3-venv git
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install ".[test]"
python -m pip install --upgrade pip
python -m pip install ".[test]"

- name: Run tests
run: pytest --cov=flaskpp
Loading