manual-approval/.github/workflows/ci.yaml
Workflow config file is invalid. Please check your config file: yaml: line 5: mapping values are not allowed in this context
2022-03-25 21:28:51 -04:00

24 lines
358 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