Skip to content

Updated pr-build.yml #19

Updated pr-build.yml

Updated pr-build.yml #19

Workflow file for this run

name: pr-build
on:
pull_request:
types: ['opened', 'reopened', 'synchronize']
branches:
- 'main'
jobs:
run-lint:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup miniconda
uses: conda-incubator/setup-miniconda@v3
with:
channels: conda-forge
environment-file: air-quality-backend/conda/test_environment.yml
auto-activate-base: false
activate-environment: unit-test
- name: Run lint check
run: python -m flake8 --append-config air-quality-backend/.flake8 air-quality-backend
run-pr-checks:
runs-on: ubuntu-latest
outputs:
defaults:
run:
shell: bash -el {0}
steps:

Check failure on line 36 in .github/workflows/pr-build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-build.yml

Invalid workflow file

You have an error in your yaml syntax on line 36
- name: Paths Changes Filter
uses: dorny/[email protected]
id: filter
with:
filters: |
etl:
- 'src/etl/**'
- name: backend tests
if: steps.filter.outputs.etl == 'true'
run:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup miniconda
uses: conda-incubator/setup-miniconda@v3
with:
channels: conda-forge
environment-file: air-quality-backend/conda/etl_environment.yml
auto-activate-base: false
activate-environment: etl-dev
- name: Run etl unit tests
run: python -m pytest --cov=src --cov=scripts --cov-report=xml:air-quality-backend/tests/coverage/etl_test_report.xml air-quality-backend/tests/etl_tests
- name: Code Coverage Report
uses: orgoro/[email protected]
with:
coverageFile: air-quality-backend/tests/coverage/etl_test_report.xml
token: ${{ secrets.GITHUB_TOKEN }}