Merge pull request #464 from IBM/CVE-2024-41110 #622
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: Go | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
name: alltests | |
runs-on: [ubuntu-latest] | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
with: | |
path: go/src/github.com/IBM/portieris | |
- name: Setup correct Go version | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.21.11' | |
check-latest: true | |
- name: alltests | |
run: | | |
export GOPATH=$GITHUB_WORKSPACE/go | |
export PATH=$PATH:$GITHUB_WORKSPACE/go/bin/ | |
export TERM=ansi | |
cd $GITHUB_WORKSPACE/go/src/github.com/IBM/portieris | |
make alltests |