manual-approval/.github/workflows/ci.yaml
Thomas Stringer 89390d2289
Add markdown files to ignored files in the CI pipeline (#25)
The CI pipeline should not be running if only markdown files are
modified, so they should be ignored.
2022-06-29 21:15:08 -04:00

30 lines
473 B
YAML

name: CI
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- '**/*.md'
pull_request:
branches:
- main
paths-ignore:
- '**/*.md'
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
- name: Lint
run: make lint