mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 6.0.0 to 6.1.0.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](4469467582...4dc6199c7b)
---
updated-dependencies:
- dependency-name: actions/setup-go
dependency-version: 6.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
name: Miller-Go
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c
|
|
with:
|
|
go-version: 1.24
|
|
|
|
- name: Build
|
|
run: make build
|
|
|
|
- name: Unit tests
|
|
run: make unit-test
|
|
|
|
- name: Regression tests
|
|
# We run these with a convoluted path to ensure the tests don't
|
|
# rely on a specific invocation
|
|
run: test/../mlr regtest -S
|
|
|
|
- name: PrepareArtifactNonWindows
|
|
if: matrix.os != 'windows-latest'
|
|
run: mkdir -p bin/${{matrix.os}} && cp mlr bin/${{matrix.os}}
|
|
|
|
- name: PrepareArtifactWindows
|
|
if: matrix.os == 'windows-latest'
|
|
run: mkdir -p bin/${{matrix.os}} && cp mlr.exe bin/${{matrix.os}}
|
|
|
|
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
|
|
with:
|
|
name: mlr-${{matrix.os}}
|
|
path: bin/${{matrix.os}}/*
|