Skip to content

Apply formatter

Apply formatter #22

Workflow file for this run

name: Lint and Test
on: [push, pull_request]
env:
PYTEST_DISCORD_WEBHOOK: ${{ secrets.PYTEST_DISCORD_WEBHOOK }}
jobs:
lint:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.job }}
cancel-in-progress: true
timeout-minutes: 20
container:
image: ghcr.io/thombashi/python-ci:3.8
steps:
- uses: actions/checkout@v3
- name: Lint
run: make check
unit-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12.0-alpha.4', 'pypy-3.8']
os: [ubuntu-latest, macos-latest, windows-latest]
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pip
run: python -m pip install --upgrade --disable-pip-version-check "pip>=21.1"
- name: Get pip cache dir
id: pip-cache
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Cache pip
uses: actions/cache@v3
with:
path: |
${{ steps.pip-cache.outputs.dir }}
./.tox
key: ${{ matrix.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('setup.py', '**/requirements.txt') }}
restore-keys: |
${{ matrix.os }}-${{ matrix.python-version }}-pip-
- name: Install dependencies
run: make setup
- name: Run tests
run: |
tox -e cov
# tox -e cov -- --discord-verbose=0 # reduce verbosity level of summary that send to discord
- name: Upload coverage report
run: |
python -m pip install --upgrade --disable-pip-version-check coveralls tomli
coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8'