Skip to content

Merge pull request #465 from IBM/prep-v0.13.18 #624

Merge pull request #465 from IBM/prep-v0.13.18

Merge pull request #465 from IBM/prep-v0.13.18 #624

Workflow file for this run

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