Skip to content

Configure CI for make check. #1

Configure CI for make check.

Configure CI for make check. #1

Workflow file for this run

# See: https://github.com/actions/starter-workflows/blob/main/ci/makefile.yml
---
name: Check syntax
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: make
run: make
- name: make check
run: make check