Skip to content

asdf

asdf #57

Workflow file for this run

name: Tests
# TODO: use proper rule
on:
push:
branches:
- '**'
jobs:
run_tests:
runs-on: ubuntu-latest
container:
image: qgis/qgis:3.34
steps:
- uses: actions/checkout@v4
- run: pwd
- run: ls
- run: cd qsa-api
- name: install system dependencies
run: apt update && apt install -y python3-poetry python3-flask python3-boto3
- name: install Python dependencies
run: poetry install
- name: run test
run: pytest -sv tests/test_api_storage_filesystem.py