Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/go-integration-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Go - integration test
on:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false

permissions:
contents: read

jobs:
go-integration-test:
runs-on: ubuntu-latest
timeout-minutes: 10
defaults:
run:
working-directory: diode-server
steps:
- name: Setup rootless Docker
uses: docker/setup-docker-action@b60f85385d03ac8acfca6d9996982511d8620a19 # v4
with:
rootless: true
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23.x'
check-latest: true
- name: Run go build
run: go build ./...
- name: Install additional dependencies
run: |
go install github.com/mfridman/[email protected]
- name: Run go test
id: go-integration-test
run: |
make test-integration