Skip to content

action

action #1

Workflow file for this run

name: test
# Run on pull requests and on the master branch itself.
on:
push:
branches:
- "*"
tags:
- "*"
pull_request:
workflow_dispatch:
jobs:
build_and_test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: build
run: docker compose build
- name: test
run: |
docker-compose run --rm qgis-desktop pytest