Skip to content

Create CI.yml

Create CI.yml #1

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
test:
runs-on: debian-latest
steps:
- uses: actions/checkout@v4
- name: Install pip
run: apt-get update && apt-get install -y python3-pip
- name: Install package
run: pip3 install . --break-system-packages
- name: Run tests
run: pytest events -vv