mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-11-18 03:25:40 +00:00
911a7d8c86
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
24 lines
485 B
YAML
24 lines
485 B
YAML
name: param check
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'src/overlay_params.h'
|
|
- 'README.md'
|
|
- 'data/MangoHud.conf'
|
|
|
|
jobs:
|
|
param-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.11.2' # Replace with the version of Python you want to use
|
|
- name: Run Python script
|
|
run: |
|
|
cd tests
|
|
python params.py
|