Skip to content

ci: Add the label-check workflow to verify changelog labels on each P… #2

ci: Add the label-check workflow to verify changelog labels on each P…

ci: Add the label-check workflow to verify changelog labels on each P… #2

name: Unit Tests on Go Tip
on:
push:
branches: [main]
# See https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
unit-tests-go-tip:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@1b05615854632b887b69ae1be8cbefe72d3ae423
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
# From https://github.com/actions/setup-go/issues/21#issuecomment-997208686
- name: Install Go tip
run: |
curl -sL https://storage.googleapis.com/go-build-snap/go/linux-amd64/$(git ls-remote https://github.com/golang/go.git HEAD | awk '{print $1;}').tar.gz -o gotip.tar.gz
ls -lah gotip.tar.gz
mkdir -p ~/sdk/gotip
tar -C ~/sdk/gotip -xzf gotip.tar.gz
~/sdk/gotip/bin/go version
echo "GOROOT=$HOME/sdk/gotip" >> $GITHUB_ENV
echo "PATH=$HOME/go/bin:$HOME/sdk/gotip/bin/:$PATH" >> $GITHUB_ENV
- name: Install tools
run: make install-ci
- name: Run unit tests
run: make test-ci
- name: Lint
run: echo skip linting on Go tip