Skip to content

[shell-operator] сhore/automate versions #1843

[shell-operator] сhore/automate versions

[shell-operator] сhore/automate versions #1843

Workflow file for this run

# Run unit tests.
# Start for pull requests and on push to default branch.
name: Unit tests
on:
pull_request:
types: [opened, synchronize]
jobs:
run_unit_tests:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.25.5"
- name: Check out shell-operator code
uses: actions/checkout@v4
- name: Restore Go modules
id: go-modules-cache
uses: actions/cache@v4.2.3
with:
path: |
~/go/pkg/mod
key: ${{ runner.os }}-gomod-${{ hashFiles('go.mod', 'go.sum') }}
restore-keys: |
${{ runner.os }}-gomod-
- name: Download Go modules
if: steps.go-modules-cache.outputs.cache-hit != 'true'
run: |
go mod download
echo -n "Go modules unpacked size is: " && du -sh $HOME/go/pkg/mod
- name: Run unit tests
run: |
export GOOS=linux
go test \
--race \
-tags test \
./cmd/... ./pkg/... ./test/utils