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 0f032b3 commit 78ecc74Copy full SHA for 78ecc74
.github/workflows/build_lint.yml
@@ -22,17 +22,13 @@ concurrency:
22
23
jobs:
24
build:
25
- runs-on: ${{ matrix.os }}-latest
26
- strategy:
27
- matrix:
28
- os: [ubuntu]
29
- python-version: ["3.12"]
+ runs-on: ubuntu-latest
30
steps:
31
- uses: actions/checkout@v4
32
- - name: Set up Python ${{ matrix.python-version }}
+ - name: Set up Python
33
uses: actions/setup-python@v5
34
with:
35
- python-version: ${{ matrix.python-version }}
+ python-version: "3.12"
36
- name: Install dependencies
37
run: pip install mesa pytest
38
- name: Test with pytest
0 commit comments