Skip to content

refactor: reformat code with gofumpt #44

refactor: reformat code with gofumpt

refactor: reformat code with gofumpt #44

Workflow file for this run

name: Build and test pushes and PRs
on: [push, pull_request]
jobs:
build:
name: Run test suite
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v3
with:
go-version: ^1.19
- name: Check out source code
uses: actions/checkout@v3
- name: Build application
env:
GOPROXY: "https://proxy.golang.org"
run: go build ./cmd/backmeup
- name: Run tests
env:
GOPROXY: "https://proxy.golang.org"
run: go test -v ./cmd/backmeup