Skip to content

chore: bump sops to v3.9.0, bump gh-actions #51

chore: bump sops to v3.9.0, bump gh-actions

chore: bump sops to v3.9.0, bump gh-actions #51

Workflow file for this run

name: "Test"
on:
- push
- pull_request
jobs:
test:
runs-on: "ubuntu-latest"
steps:
- name: "Checkout source code"
uses: "actions/checkout@v4"
with:
fetch-depth: 0
- name: "Set up Go"
uses: "actions/setup-go@v5"
with:
go-version-file: 'go.mod'
- name: Get dependencies
run: go mod vendor
- name: Install PGP and SOPS Dev Key
run: |
sudo apt-get install pgpgpg &&
gpg --import vendor/github.com/getsops/sops/v3/pgp/sops_functional_tests_key.asc
- uses: azure/setup-helm@v4
with:
version: 'latest'
id: install
- name: Build
run: go build .
- name: Test
run: go test -v .