Skip to content

Enable CI with Github actions #3

Enable CI with Github actions

Enable CI with Github actions #3

Workflow file for this run

name: Makefile CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up python environment
run: source set-up-python-venv.sh
- name: Run linters and tests
run: make check