Skip to content

feat(tui): implement refresh for bucket, project and object info #124

feat(tui): implement refresh for bucket, project and object info

feat(tui): implement refresh for bucket, project and object info #124

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
cache: true
- name: Verify Dependencies
run: |
go mod tidy
if [ -n "$(git status --porcelain)" ]; then
echo "go.mod or go.sum is not tidy. Please run 'go mod tidy' and commit the changes."
git status
git diff
exit 1
fi
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: latest
args: --timeout=5m
- name: Run Tests with Coverage
run: go test -v -race -coverpkg=./... -coverprofile=coverage.out ./...
- name: Build
run: go build -v -o lazygcs main.go