Skip to content

Commit

Permalink
Merge branch 'main' of github.com:CambridgeEngineering/PartIA-Flood-W…
Browse files Browse the repository at this point in the history
…arning-System
  • Loading branch information
garth-wells committed Jan 11, 2024
2 parents e3e0c80 + 68db3ee commit 3156387
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,20 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10]
timeout-minutes: 5

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
- uses: actions/checkout@v5
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: '3.11'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 matplotlib pytest requests
- name: Lint with flake8
- name: Lint with flake8 (non-blocking)
run: flake8 --exit-zero --statistics *.py

- name: Run unit tests using pytest
Expand Down

0 comments on commit 3156387

Please sign in to comment.