fix(deps): update module go.step.sm/crypto to v0.54.2 #75
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: Runtipi CLI Go CI | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: "main" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22.5" | |
- name: Install dependencies | |
run: go get . | |
- name: Set version | |
run: echo -n nightly > internal/constants/assets/VERSION | |
- name: Run tests | |
run: go test -v ./... |