-
-
Notifications
You must be signed in to change notification settings - Fork 65
28 lines (24 loc) · 682 Bytes
/
check.yml
File metadata and controls
28 lines (24 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Check config
on: [push, pull_request, workflow_dispatch]
permissions: {}
env:
FORCE_COLOR: 1
jobs:
check-config:
runs-on: ubuntu-latest
strategy:
# These are short jobs, fail-fast would only hide information from us
fail-fast: false
matrix:
python-version:
- '3.13'
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Check configuration
run: make check PIP=pip BUILDBOT=buildbot PYTHON_VERSION=${{ matrix.python-version }}