Skip to content

Update golang.org/x/exp digest to 701f63a #598

Update golang.org/x/exp digest to 701f63a

Update golang.org/x/exp digest to 701f63a #598

---
name: EE Backend Go Tests
"on":
push:
branches: ['develop']
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Download Go
uses: actions/setup-go@v5
with:
go-version: 1.21.1
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Test that the docker image still builds successfully
run: |
export COMMIT_SHA=$(git rev-parse --short HEAD)
docker build -t testingbuild:latest --build-arg COMMIT_SHA=${COMMIT_SHA} . -f Dockerfile_backend
- name: Deps
run: go get -v ./...
working-directory: ee/backend
- name: Build
run: go build
working-directory: ee/backend
- name: Test
run: go test -v ./...
env:
GITHUB_PAT_TOKEN: ${{ secrets.TOKEN_GITHUB }}
working-directory: ee/backend