Skip to content

Add Github actions

Add Github actions #14

Workflow file for this run

name: Run tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
python-version:
- "3.6"
- "3.7"
sqlalchemy-version:
- "1.0.0"
- "1.1.0"
- "1.2.0"
- "1.3.0"
include:
- os: ubuntu-20.04
python-version: "3.6"
- os: ubuntu-22.04
python-version: "3.7"
runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install SQLAlchemy~=${{ matrix.sqlalchemy-version }}
pip install -r requirements.txt -r requirements-test.txt coveralls
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with nose
run: |
python setup.py nosetests
- name: Upload coverage data
run: coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_PARALLEL: true
coveralls_finish:
name: Finalize coverage
needs: test
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Install coveralls
run: pip3 install --upgrade coveralls
- name: Finished
run: coveralls --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}