This repository has been archived by the owner on Jun 21, 2024. It is now read-only.
Update dependency ubuntu to v22 #144
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: go-test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
go-version: '1.18' | |
- name: test | |
run: go test ./... -coverprofile=profile.cov | |
- uses: shogo82148/[email protected] | |
with: | |
path-to-profile: profile.cov |