fix(deps): update golang.org/x/exp digest to f66d83c #1219
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: Libs 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: Deps | |
run: | | |
pwd | |
go get -v ./... | |
working-directory: libs | |
- name: Install Azurite | |
run: npm install -g azurite | |
- name: Start Azurite service | |
run: azurite --silent & | |
- name: Test | |
run: go test -v ./... | |
env: | |
DIGGER_LICENSE_KEY: ${{ secrets.TEST_DIGGER_LICENSE_KEY}} | |
working-directory: libs |