Sy 1442 v033 v034 release notes #1997
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test - Synnax" | |
on: | |
pull_request: | |
branches: | |
- rc | |
- main | |
push: | |
branches: | |
- rc | |
- main | |
workflow_dispatch: | |
jobs: | |
changes: | |
name: Changes | |
runs-on: ubuntu-latest | |
outputs: | |
changed: ${{ steps.filter.outputs.changed }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Diff Changes | |
uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
changed: | |
- .github/workflows/test.synnax.yaml | |
- alamos/go/** | |
- aspen/** | |
- cesium/** | |
- freighter/go/** | |
- synnax/** | |
- x/go/** | |
test: | |
name: Test (${{ matrix.os }}) | |
needs: changes | |
if: needs.changes.outputs.changed == 'true' | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.work | |
cache-dependency-path: | | |
alamos/go/go.sum | |
aspen/go.sum | |
cesium/go.sum | |
freighter/go/go.sum | |
synnax/go.sum | |
x/go/go.sum | |
- name: Test | |
run: go test -v -shuffle=on ./... | |
working-directory: synnax |