Updates CI, adds pyproject.toml #138
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
- name: Install requirements | |
run: | | |
pip install -r requirements.txt | |
- name: Install QGIS | |
run: sudo apt update && sudo apt install -y qgis | |
- name: Start docker stack | |
run: docker-compose up --build -d | |
- name: Wait a little bit | |
run: sleep 5 | |
- name: Running migrations | |
run: python manage.py migrate | |
- name: Running tests | |
run: | | |
python manage.py test comptages.test -v2 | |
- name: Setting up build tools | |
run: pip install qgis-plugin-ci | |
- name: Trying to build / package | |
run: qgis-plugin-ci package 'test' |