manual-approval/.github/workflows/ci.yaml
Thomas Stringer 771ebb5e80 fix workflow
2022-03-25 21:31:42 -04:00

24 lines
359 B
YAML

name: CI
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: make build
env:
VERSION: latest
- name: Test
run: make test