Merge pull request #837 from synnaxlabs/sy-1245-fix-race-condition-in… #1486
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 - Cesium" | |
on: | |
pull_request: | |
branches: | |
- rc | |
- main | |
push: | |
branches: | |
- rc | |
- main | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Diff Changes | |
uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
changed: | |
- 'cesium/**' | |
- 'x/**' | |
- '.github/workflows/test.cesium.yaml' | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
if: steps.filter.outputs.changed == 'true' | |
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 | |
if: steps.filter.outputs.changed == 'true' | |
run: go test -v ./... --covermode=atomic --coverprofile=coverage.txt --ginkgo.label-filter="!integration && !performance" | |
working-directory: ./cesium | |
- name: Upload Coverage | |
if: steps.filter.outputs.changed == 'true' | |
uses: codecov/codecov-action@v3 | |
with: | |
directory: ./cesium | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: cesium |