Skip to content

ci(github/main): cosmetic change to re-trigger the build after workfl… #222

ci(github/main): cosmetic change to re-trigger the build after workfl…

ci(github/main): cosmetic change to re-trigger the build after workfl… #222

Workflow file for this run

name: Build
on:
pull_request: # to master
schedule:
- cron: "0 0 * * 0"
push:
branches: # CI debugging
- "ci/**"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python: ["3.12"]
include:
- python: "3.12"
tox_env: "lint"
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: |
python -m pip install --upgrade pip setuptools
pip install tox
- name: Test
run: |
tox -e ${{ matrix.tox_env }}