Skip to content

Starting to remove action files #4

Starting to remove action files

Starting to remove action files #4

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: install packages
run: make install
- name: format
run: make format
- name: lint
run: make lint
- name: test
run: make test