Skip to content

fix(deps): update module golang.org/x/oauth2 to v0.34.0 #95

fix(deps): update module golang.org/x/oauth2 to v0.34.0

fix(deps): update module golang.org/x/oauth2 to v0.34.0 #95

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Build and Test
on:
pull_request:
push:
tags-ignore:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Build
run: |
VERSION=$(git describe --tags --always --dirty 2>/dev/null || echo "dev-$(git rev-parse --short HEAD)")
go build -v -ldflags "-X github.com/xbglowx/github-org-repos-sync/cmd.Version=$VERSION" ./...
- name: Test
run: go test -v ./...