16 lines
278 B
YAML
16 lines
278 B
YAML
name: checks
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
lint:
|
|
name: check and test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install Docker
|
|
run: curl -fsSL https://get.docker.com | sh
|
|
- name: test
|
|
run: make test
|