Skip to content

Frontend: Soft-update extended description and image notes #14

Frontend: Soft-update extended description and image notes

Frontend: Soft-update extended description and image notes #14

Workflow file for this run

name: Backup tool (Go) CI
on:
push:
branches: [ "master" ]
paths:
- backup-tool/**
- .github/workflows/**
pull_request:
branches: [ "master" ]
paths:
- backup-tool/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.22.x
- name: Build
working-directory: ./backup-tool
run: go build -v ./...
- name: Test
working-directory: ./backup-tool
run: go test -v ./...