Skip to content

allow to skip params #5

allow to skip params

allow to skip params #5

name: CI Workflow
on:
push:
branches:
- '**' # Run on commits to any branch
jobs:
build:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Deps
run: make deps
- name: Type test
run: make test
- name: Type check
run: make type-check
- name: Lint
run: make lint