Skip to content

Commit

Permalink
Merge branch 'main' into chore/typing
Browse files Browse the repository at this point in the history
  • Loading branch information
callumtilbury committed Feb 29, 2024
2 parents 4a1e0f9 + a08daff commit e0465de
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tests_linters.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Tests and Linters 🧪

on: [ push, pull_request ]

jobs:
tests-and-linters:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
timeout-minutes: 10

strategy:
matrix:
python-version: ["3.9"]
os: [self-hosted]

steps:
- name: Checkout og-marl
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
- name: Install pre-commit dependencies 🔧
run: pip install pre-commit ruff mypy
- name: Run linters 🖌️
run: pre-commit run --all-files --verbose

0 comments on commit e0465de

Please sign in to comment.