feat: add changelog (#40) #203
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: terradoc-ci | |
on: [push] | |
jobs: | |
lint: | |
runs-on: ubuntu-20.04 | |
# Lint with all supported go versions | |
# Doesn't seem necessary to lint on different OS's | |
strategy: | |
matrix: | |
go: ["1.17"] | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v2 | |
- name: setup go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: make lint | |
run: make lint | |
build_test: | |
name: Build and Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
go: ["1.17"] | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v2 | |
- name: setup go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: make test | |
run: make test | |
- name: make build | |
run: make build |