Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

chore(deps): bump github.com/imroc/req/v3 from 3.42.2 to 3.48.0 #112

chore(deps): bump github.com/imroc/req/v3 from 3.42.2 to 3.48.0

chore(deps): bump github.com/imroc/req/v3 from 3.42.2 to 3.48.0 #112

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.21.0'
- name: Cache Go modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build
run: go build -v .
- name: Test
run: go test -v ./...