Skip to content

build(deps): bump actions/checkout from 3 to 4 #57

build(deps): bump actions/checkout from 3 to 4

build(deps): bump actions/checkout from 3 to 4 #57

Workflow file for this run

name: Testsuite
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-latest]
include:
- os: ubuntu-20.04
python-version: "3.6"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install aiosqlite
- name: Run the testsuite
run: tests/test.py