Skip to content

Merge pull request #4 from AlphaKnights/auto-align #5

Merge pull request #4 from AlphaKnights/auto-align

Merge pull request #4 from AlphaKnights/auto-align #5

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.12.7
- name: Install dependencies
run: |
python -m venv venv
source venv/bin/activate
python3 -m pip install "robotpy==2024.3.2.2"
python3 -m robotpy sync
- name: Run mypy
run: |
source venv/bin/activate
mypy .