Skip to content

Software Architecture in Go: Extensibility - Part 3 #171

Software Architecture in Go: Extensibility - Part 3

Software Architecture in Go: Extensibility - Part 3 #171

Workflow file for this run

name: CI
on: push
jobs:
all:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
cache: true
cache-dependency-path: |
**/go.sum
internal/tool/go.sum
- name: Lint
run: make lint
- name: Make Docker images
run: make docker
- name: Test
run: make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}