Skip to content

imp: install go mod after scaffold #32

imp: install go mod after scaffold

imp: install go mod after scaffold #32

Workflow file for this run

name: integration-tests
on:
push:
branches: [main]
pull_request:
paths:
- '**.go'
- '.github/workflows/integration.yml'
permissions:
contents: read
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: "1.21"
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/[email protected]
with:
version: v1.54
args: --timeout 5m
working-directory: integration_test
- name: Build
run: make build
- name: Test
run: make integration-tests