Skip to content

Interactive Actions debugging #94

Interactive Actions debugging

Interactive Actions debugging #94

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: '${{ matrix.os }}: ${{ matrix.python-version }}'
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.12']
os: [windows-latest]
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 Tox
run: pip install tox
- name: Tox
run: tox -e py-test
style:
name: Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: TrueBrain/actions-flake8@master