Skip to content

Bump axios from 0.21.4 to 1.6.0 in /solidity #582

Bump axios from 0.21.4 to 1.6.0 in /solidity

Bump axios from 0.21.4 to 1.6.0 in /solidity #582

Workflow file for this run

name: Go tests
on:
push:
branches:
- main
pull_request:
jobs:
go-test:
permissions:
contents: read
packages: write
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Checkout Branch
uses: actions/checkout@v3
- name: Create Go cache
uses: actions/cache@v2
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('module/go.sum') }}
- name: Run Go tests
run: cd module && make test-cov
- uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./module/coverage.txt
fail_ci_if_error: true