Skip to content

Sy 1548 changelog #2008

Sy 1548 changelog

Sy 1548 changelog #2008

Workflow file for this run

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