Skip to content

Startup Trace and Automatic image switching #32

Startup Trace and Automatic image switching

Startup Trace and Automatic image switching #32

Workflow file for this run

name: 'Pull Request'
on:
pull_request:
branches: [ "main" ]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: 'Set up Go'
uses: actions/setup-go@v3
with:
go-version: '1.23'
- name: Verify dependencies
run: go mod verify
- name: Lint Code
uses: golangci/[email protected]
- name: Build
run: make compile ENVIRONMENT=production
- name: Test
run: make test ENVIRONENT=production