Skip to content

GH-1: Build in GitHub Actions #1

GH-1: Build in GitHub Actions

GH-1: Build in GitHub Actions #1

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
- name: Install dependencies
run: pip install .
- name: Run tests
run: pytest