Skip to content

fix: update Go module path to github.com/libdns/oraclecloud (#2) #4

fix: update Go module path to github.com/libdns/oraclecloud (#2)

fix: update Go module path to github.com/libdns/oraclecloud (#2) #4

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Go ${{ matrix.go-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version:
- '1.25'
- stable
steps:
- name: Check out repository
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- name: Verify module graph
run: |
go mod tidy
git diff --exit-code -- go.mod go.sum
- name: Build package
run: go build ./...
- name: Run tests
run: go test ./...