Change Community Meeting Call link #326
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
format: | |
name: Check formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: "1.17.2" | |
- name: Install vmdfmt | |
run: go install github.com/bobertlo/vmd/cmd/vmdfmt@latest | |
- name: Check formatting | |
run: | | |
export PATH="$PATH:/tmp/go/bin:$(pwd)/node_modules/.bin" | |
./ci/check_format.sh | |
links: | |
name: Check links | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Link Checker | |
id: lc | |
uses: peter-evans/link-checker@v1 | |
- name: Fail if there were link errors | |
run: exit ${{ steps.lc.outputs.exit_code }} |