Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pzentenoe committed Apr 9, 2024
1 parent 621fd42 commit 95f9108
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: Set up Go 1.22
uses: actions/setup-go@v3
with:
go-version: 1.22
id: go

- name: Cache Go modules
uses: actions/cache@v2
Expand All @@ -29,6 +29,10 @@ jobs:
restore-keys: |
${{ runner.os }}-go-
# Agregado: Paso para actualizar dependencias con go mod tidy
- name: Update dependencies
run: go mod tidy

- name: Test
run: go test ./... -v
env:
Expand Down

0 comments on commit 95f9108

Please sign in to comment.