update codeowners to ohai (#262) #687
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push/PR | |
on: | |
push: | |
branches: | |
- master | |
- renovate/** | |
pull_request: | |
jobs: | |
push-pr: | |
uses: newrelic/coreint-automation/.github/workflows/reusable_push_pr.yaml@v3 | |
with: | |
run_test_windows: false | |
test-integration-nix-cgroups-v1: | |
name: Run integration tests on *Nix cgroups-v1 | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check cgroups version | |
run: | | |
if [ $(docker info --format '{{.CgroupVersion}}') != "1" ]; then | |
echo "This test must be run in cgroups v1" | |
exit 1 | |
fi | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Integration test | |
run: make integration-test |