Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: CICD
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install packages
run: make install
- name: lint
run: make lint
- name: test
run: make test
- name: format
run: make format