Skip to content

Commit

Permalink
Simplify build_lint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rht committed Jan 11, 2024
1 parent 4c8965c commit c4970ad
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/build_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,13 @@ concurrency:

jobs:
build:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [ubuntu]
python-version: ["3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: "3.12"
- name: Install dependencies
run: pip install mesa pytest
- name: Test with pytest
Expand Down

0 comments on commit c4970ad

Please sign in to comment.