Skip to content

attempt 2 at fixing github workflow #72

attempt 2 at fixing github workflow

attempt 2 at fixing github workflow #72

Workflow file for this run

name: Linux
on: [push]
jobs:
linux-test:
runs-on: ubuntu-20.04
continue-on-error: true
strategy:
matrix:
branch: [default]
python-version: [3.8, 3.9, '3.10', '3.11']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# - name: Setup database
# run: |
# cd test
# ./initfarm.sh
# ./initdb.sh
- name: Run tests
run: make pytest