Skip to content

Bump github.com/google/uuid from 1.3.0 to 1.3.1 in /pw-feeder #22

Bump github.com/google/uuid from 1.3.0 to 1.3.1 in /pw-feeder

Bump github.com/google/uuid from 1.3.0 to 1.3.1 in /pw-feeder #22

Workflow file for this run

---
name: Pull Request
on:
# Enable manual running of action if necessary
workflow_dispatch:
# Test build/deploy on PRs to main/master
pull_request:
# Only publish on push to main branch
branches:
- main
# Don't trigger if it's just a documentation update
paths-ignore:
- '**.md'
- '**.MD'
- '**.yml'
- '.gitattributes'
- '.gitignore'
jobs:
tests:
name: Test pw-feeder
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "go mod tidy"
run: |
cd pw-feeder
go mod tidy
- name: "go test"
run: |
cd pw-feeder
go test -v -coverprofile=coverage.txt ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
- name: "go build"
run: |
cd pw-feeder
go build ./...