mirror of
https://github.com/fosrl/newt.git
synced 2026-02-07 21:46:39 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.1.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](08c6903cd8...8e8c483db8)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
40 lines
974 B
YAML
40 lines
974 B
YAML
name: Run Tests
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- dev
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
target:
|
|
- local
|
|
- docker-build
|
|
- go-build-release-darwin-amd64
|
|
- go-build-release-darwin-arm64
|
|
- go-build-release-freebsd-amd64
|
|
- go-build-release-freebsd-arm64
|
|
- go-build-release-linux-amd64
|
|
- go-build-release-linux-arm32-v6
|
|
- go-build-release-linux-arm32-v7
|
|
- go-build-release-linux-riscv64
|
|
- go-build-release-windows-amd64
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
|
|
with:
|
|
go-version: 1.25
|
|
|
|
- name: Build targets via `make`
|
|
run: make ${{ matrix.target }}
|