Update all dependencies #450
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: Test app | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.17.8' | |
- name: Show Go version | |
run: go version | |
- name: Check out source code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: make test | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: tests-results | |
path: coverage.html | |
retention-days: 5 | |
- name: Upload coverage to Codecov | |
run: bash <(curl -s https://codecov.io/bash) |