Skip to content

Merge pull request #229 from pierretr/master #427

Merge pull request #229 from pierretr/master

Merge pull request #229 from pierretr/master #427

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: |
python -m pip install -U pip
python -m pip install tox
- name: Run Tox
run: tox
env:
TOXENV: py${{ matrix.python-version}}-cov-codecov
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Tox and any other packages
run: |
python -m pip install -U pip
python -m pip install tox
- name: Run Tox
run: tox
env:
TOXENV: security
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- uses: pre-commit/[email protected]