Skip to content

πŸ’š Type in action #2

πŸ’š Type in action

πŸ’š Type in action #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Get dependencies
run: |
sudo apt update
sudo apt install -y python3-colored make
- name: Run tests
run: make check