Skip to content

Merge branch 'main' of github.com:railwayapp/railpack-go #276

Merge branch 'main' of github.com:railwayapp/railpack-go

Merge branch 'main' of github.com:railwayapp/railpack-go #276

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
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 ./...