Skip to content

fix wrongly running macos workflow on ubuntu-latest + formatting #35

fix wrongly running macos workflow on ubuntu-latest + formatting

fix wrongly running macos workflow on ubuntu-latest + formatting #35

Workflow file for this run

%YAML 1.2

Check failure on line 1 in .github/workflows/checks.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/checks.yml

Invalid workflow file

You have an error in your yaml syntax
---
name: Checks
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
# Keep in sync with .readthedocs.yml
- python-version: '3.13'
env:
TOXENV: docs
- python-version: '3.13'
env:
TOXENV: pre-commit
- python-version: '3.13'
env:
TOXENV: pylint
- python-version: '3.13'
env:
TOXENV: typing
- python-version: '3.13'
env:
TOXENV: twinecheck
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run check
env: ${{ matrix.env }}
run: |
pip install --upgrade pip
pip install --upgrade tox
tox