Skip to content

Commit

Permalink
CI workflow now uses python 3.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
epwr committed Feb 13, 2024
1 parent 743ff22 commit f0200bd
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/Continuous Integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,18 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- 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: Run Coverage
- name: Ensure 100% Test Coverage
run: make coverage

0 comments on commit f0200bd

Please sign in to comment.