Skip to content

CI workflow now uses python 3.12. #9

CI workflow now uses python 3.12.

CI workflow now uses python 3.12. #9

name: Continuous Integration
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Check failure on line 15 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 15
- name: Set Up Python 3.12
uses: actions/setup-python@v4
with:
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