Skip to content

Bump golang.org/x/crypto from 0.27.0 to 0.31.0 #19

Bump golang.org/x/crypto from 0.27.0 to 0.31.0

Bump golang.org/x/crypto from 0.27.0 to 0.31.0 #19

Workflow file for this run

---
name: "Test"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
on:
push:
branches: [ master ]
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup dependencies
uses: ./.github/actions/setup-deps
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run tests
run: task test
- name: Upload coverage to Codecov
if: success()
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: ./coverage.txt
fail_ci_if_error: false