mirror of
https://github.com/gravitl/netmaker.git
synced 2026-01-20 01:49:27 +08:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
74 lines
1.8 KiB
YAML
74 lines
1.8 KiB
YAML
name: Integration Test
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- name: Build
|
|
run: |
|
|
env CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build main.go
|
|
env CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -tags=ee main.go
|
|
|
|
nmctl:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Setup go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- name: Build
|
|
run: |
|
|
cd cli
|
|
GOOS=linux GOARCH=amd64 go build -o nmctl
|
|
GOOS=darwin GOARCH=amd64 go build -o nmctl
|
|
GOOS=darwin GOARCH=arm64 go build -o nmctl
|
|
GOOS=windows GOARCH=amd64 go build -o nmctl
|
|
|
|
tests:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- name: run tests
|
|
run: |
|
|
go vet ./...
|
|
go test -p 1 ./... -v
|
|
go test -p 1 ./pro -v --tags ee
|
|
env:
|
|
DATABASE: sqlite
|
|
CLIENT_MODE: "off"
|
|
|
|
staticcheck:
|
|
env:
|
|
DATABASE: sqlite
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- name: run static checks
|
|
run: |
|
|
sudo apt update
|
|
go install honnef.co/go/tools/cmd/staticcheck@latest
|
|
{ ~/go/bin/staticcheck -tags=ee ./... ; }
|