inital packaging
Some checks failed
Mingw build testing / build-mingw (push) Failing after 30s
Ubuntu build testing / build-test (clang, ubuntu-20.04) (push) Failing after 2m10s
Ubuntu build testing / build-test (clang, ubuntu-22.04) (push) Failing after 2m35s
Ubuntu build testing / build-test (gcc, ubuntu-20.04) (push) Failing after 43s
Ubuntu build testing / build-test (gcc, ubuntu-22.04) (push) Failing after 44s
Some checks failed
Mingw build testing / build-mingw (push) Failing after 30s
Ubuntu build testing / build-test (clang, ubuntu-20.04) (push) Failing after 2m10s
Ubuntu build testing / build-test (clang, ubuntu-22.04) (push) Failing after 2m35s
Ubuntu build testing / build-test (gcc, ubuntu-20.04) (push) Failing after 43s
Ubuntu build testing / build-test (gcc, ubuntu-22.04) (push) Failing after 44s
This commit is contained in:
23
.github/workflows/param-check.yml
vendored
Normal file
23
.github/workflows/param-check.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
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
|
||||
Reference in New Issue
Block a user