Bump version (and fix typo) #187
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: linux-tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
# Python 3.3 and 3.4 have been removed since github won't provide these anymore | |
# As of 2023/01/09, we have removed python 3.5 and 3.6 as they don't work anymore with linux on github | |
python-version: [2.7, 3.7, 3.8, 3.9, "3.10", "3.11", 'pypy-3.6', 'pypy-3.7'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
expiration: 30d | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install --upgrade setuptools | |
if [ -f ofunctions/requirements.txt ]; then pip install -r ofunctions/requirements.txt; fi | |
- name: Execute tests and generate coverage report | |
env: | |
RUNNING_ON_GITHUB_ACTIONS: true | |
run: | | |
pip install pytest coverage | |
# Make sure we don't try the ping checks since they fail on github runners that don't allow pings (WTF !) | |
# See https://github.com/actions/virtual-environments/issues/1519 | |
python -m coverage run -m pytest -s tests | |
- name: Upload Coverage to Codecov | |
uses: codecov/codecov-action@v3 |