Skip to content
Merged
Show file tree
Hide file tree
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
35 changes: 35 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Tests

on:
push:
branches: [main]
pull_request:
branches: [main]

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

- uses: actions/setup-go@v6
with:
go-version-file: go.mod

- name: Install gotestsum
run: go install gotest.tools/gotestsum@latest

- name: Build
run: go build ./...

- name: Run unit tests
run: gotestsum --format github-actions --junitfile test-results.xml -- ./pkg/executor/... -timeout 120s

- name: Test summary
if: always()
uses: test-summary/action@v2
with:
paths: test-results.xml
Binary file removed dstream
Binary file not shown.
Loading
Loading