CI pipeline for PR - (#34) feat: Render entry.go
(second stage)
#27
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
# This workflow will build and test a golang project | |
name: PR CI | |
run-name: "CI pipeline for PR - (#${{ github.event.number }}) ${{ github.event.pull_request.title }}" | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
jobs: | |
ci: | |
name: Run CI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21' | |
- name: Download Go dependencies | |
run: go get ./... && go mod tidy | |
- name: Check if all dependencies were commited | |
shell: bash | |
run: | | |
if [ "$(git status --porcelain)" ]; then | |
git status | |
exit 1 | |
else | |
exit 0 | |
fi | |
- name: Build codegen | |
run: go build -v ./... | |
- name: Test codegen | |
run: go test -v ./... |