Skip to content

Commit

Permalink
add orchestrator file
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslawlor committed Mar 29, 2024
1 parent bb955b3 commit e86ee86
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/orchestrator.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: langton-ant

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run ruff
run: |
make ruff
- name: Run unit tests
run: |
pytest

0 comments on commit e86ee86

Please sign in to comment.