Skip to content

Commit

Permalink
Merge branch 'master' into feature/f-string-checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Hitchen committed Jan 13, 2024
2 parents 31d70d8 + 96032c1 commit eb1ee14
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/run_quality_assurance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run Quality Assurance

on: push

jobs:
run-quality-assurance:
name: Run Quality Assurance
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Checkout Code
uses: actions/checkout@v2
- name: Installation
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-dev.txt
- name: Test Script
run: ./test.sh

1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
flake8<7.0,>=3.5
setuptools

0 comments on commit eb1ee14

Please sign in to comment.