Skip to content

WIP Workflow

WIP Workflow #1

Workflow file for this run

# This is a basic workflow that is manually triggered

Check failure on line 1 in .github/workflows/test_install.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test_install.yml

Invalid workflow file

`env` is not a valid event name
name: Test install
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
push:
branches: [master, dev]
paths:
- "backend/**"
- "frontend/**"
pull_request:
branches: [master, dev]
paths:
- "backend/**"
- "frontend/**"
env:
PROJECT_FOLDER: "plugin_qgis_lpo"
PYTHON_VERSION: 3.9
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "greet"
greet:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Runs a single command using the runners shell
- name: Send greeting
run: echo "Hello ${{ inputs.name }}"