1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 10:27:06 +00:00

chore: enable caching for CI (#2257)

This commit is contained in:
Oleksandr Redko
2023-10-24 15:12:50 +03:00
committed by GitHub
parent c886e3bd28
commit b67d403835
2 changed files with 4 additions and 4 deletions

View File

@@ -20,14 +20,14 @@ jobs:
go_version: [1.21.x] go_version: [1.21.x]
steps: steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x - name: Set up Go 1.x
uses: actions/setup-go@v4 uses: actions/setup-go@v4
with: with:
go-version: ${{ matrix.go_version }} go-version: ${{ matrix.go_version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Test - name: Test
run: go test -v ./... run: go test -v ./...

View File

@@ -39,7 +39,7 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning. # Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL - name: Initialize CodeQL