Skip to content

Merge pull request #49 from railwayapp/jr/cra-and-angular-support #306

Merge pull request #49 from railwayapp/jr/cra-and-angular-support

Merge pull request #49 from railwayapp/jr/cra-and-angular-support #306

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths-ignore:
- "docs/**"
pull_request:
branches: [main]
paths-ignore:
- "docs/**"
jobs:
test:
name: Check and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23.4"
cache: true
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.63.4
args: --timeout=5m
- name: Format
run: go fmt ./...
- name: Vet
run: go vet ./...
- name: Test Unit
run: go test -short ./...