Skip to content

CI workflow more syntax/whitespace fixes. #11

CI workflow more syntax/whitespace fixes.

CI workflow more syntax/whitespace fixes. #11

name: Continuous Integration
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Up Python 3.12
uses: actions/setup-python@v4
with:

Check failure on line 19 in .github/workflows/Continuous Integration.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/Continuous Integration.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
python-version: "3.12"
- name: Install dependencies
run: make venv
- name: Run Static Analysis & Tests
run: make
- name: Ensure 100% Test Coverage
run: make coverage