Skip to content

fix: bump outdated python version crashing test workflow #44

fix: bump outdated python version crashing test workflow

fix: bump outdated python version crashing test workflow #44

Workflow file for this run

name: Run Tests
on:
push:
branches:
- "master"
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false # don't cancel if a job from the matrix fails
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
sudo apt install -y sqlite3 fftw3 libfftw3-dev
pip install -r requirements.txt
- name: Running Tests
run: |
./run_pylint.sh