mirror of
https://github.com/seriousm4x/UpSnap.git
synced 2026-07-23 05:53:55 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
38 lines
1.2 KiB
YAML
38 lines
1.2 KiB
YAML
name: go test
|
|
|
|
on:
|
|
push:
|
|
paths: backend/**
|
|
|
|
jobs:
|
|
check-runner:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
runner-label: ${{ steps.set-runner.outputs.runner-label }}
|
|
steps:
|
|
- name: Set runner
|
|
id: set-runner
|
|
run: |
|
|
runners=$(curl -s -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.REPO_ACCESS_TOKEN }}" "https://api.github.com/repos/${{ github.repository }}/actions/runners")
|
|
available=$(echo "$runners" | jq '.runners[] | select(.status == "online" and .busy == false and .labels[] .name == "self-hosted")')
|
|
if [ -n "$available" ]; then
|
|
echo "runner-label=self-hosted" >> "$GITHUB_OUTPUT"
|
|
else
|
|
echo "runner-label=ubuntu-latest" >> "$GITHUB_OUTPUT"
|
|
fi
|
|
|
|
build:
|
|
needs: check-runner
|
|
runs-on: ${{ needs.check-runner.outputs.runner-label }}
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version-file: "./backend/go.mod"
|
|
cache-dependency-path: "./backend/go.sum"
|
|
- name: Test
|
|
run: |
|
|
cd backend
|
|
go test -exec sudo -v ./...
|