Skip to content

Cut pull_requests from workflow #2

Cut pull_requests from workflow

Cut pull_requests from workflow #2

Workflow file for this run

name: Test AIMA
on:
push:
branches:
- "main"
jobs:
build:
runs-on: self-hosted
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Lint/format with ruff
uses: chartboost/ruff-action@v1
with:
args: 'format --check'
- name: Test with pytest
run: |
pytest