We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 385b804 commit f922f7cCopy full SHA for f922f7c
.github/workflows/build_lint.yml
@@ -21,6 +21,23 @@ concurrency:
21
cancel-in-progress: true
22
23
jobs:
24
+ build:
25
+ runs-on: ${{ matrix.os }}-latest
26
+ strategy:
27
+ matrix:
28
+ os: [ubuntu]
29
+ python-version: ["3.12"]
30
+ steps:
31
+ - uses: actions/checkout@v4
32
+ - name: Set up Python ${{ matrix.python-version }}
33
+ uses: actions/setup-python@v5
34
+ with:
35
+ python-version: ${{ matrix.python-version }}
36
+ - name: Install dependencies
37
+ run: pip install mesa pytest
38
+ - name: Test with pytest
39
+ run: pytest test_examples.py
40
+
41
lint-ruff:
42
runs-on: ubuntu-latest
43
steps:
0 commit comments