Skip to content

Update run_tests.py #13

Update run_tests.py

Update run_tests.py #13

Workflow file for this run

name: Meson-UI CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r .github/ci-requirements.txt
- name: Lint with flake8
run: |
pip install flake8
flake8 .
- name: Test with pytest
run: |
python run_tests.py