chore(deps): update actions/github-script action to v7 #162
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: | |
- main | |
- renovate/** | |
pull_request: | |
jobs: | |
static-analysis: | |
name: Run all static analysis checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check if CHANGELOG is valid | |
uses: newrelic/release-toolkit/validate-markdown@v1 | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
- name: Run unit tests | |
run: make test |