mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
607 B
YAML
30 lines
607 B
YAML
name: "Go: Run Tests"
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "go/**"
|
|
- "!go/documentation/**"
|
|
- "shared/**"
|
|
- .github/workflows/go-tests.yml
|
|
- .github/actions/**
|
|
- codeql-workspace.yml
|
|
- MODULE.bazel
|
|
- .bazelrc
|
|
- misc/bazel/**
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test-linux:
|
|
if: github.repository_owner == 'github'
|
|
name: Test Linux (Ubuntu)
|
|
runs-on: ubuntu-latest-xl
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v5
|
|
- name: Run tests
|
|
uses: ./go/actions/test
|
|
with:
|
|
run-code-checks: true
|