Skip to content

build(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0 (#911) #100

build(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0 (#911)

build(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0 (#911) #100

Workflow file for this run

name: build
on:
push:
branches:
- main
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: checkout source code
uses: actions/checkout@main
- name: setup go environment
uses: actions/setup-go@v1
with:
go-version: '1.17.6'
- name: run tests
run: make test
- name: upload coverage report
uses: actions/upload-artifact@main
with:
name: chartmuseum-storage-coverage-report-${{ github.sha }}
path: coverage.html
if: always()