Skip to content

chore: fork gcosmos from gordian core #1

chore: fork gcosmos from gordian core

chore: fork gcosmos from gordian core #1

Workflow file for this run

name: Go Build and Test
on:
pull_request:
push:
tags:
- '**'
branches:
- '**'
env:
GORDIAN_TEST_TIME_FACTOR: 4
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod # Use whatever version is in the header of go.mod.
- name: Build
run: go build ./...
- name: Test
run: go test -race ./...