Skip to content

chore: update CHANGELOG #76

chore: update CHANGELOG

chore: update CHANGELOG #76

name: tests
on:
push:
branches-ignore:
- 'gh-pages'
pull_request:
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: |
./install-test.sh
- name: Run unit tests
run: |
./runtests.sh
- name: Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
run: |
coveralls --service=github