diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml deleted file mode 100644 index 81fedb8..0000000 --- a/.github/workflows/go.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: ci - -on: - push: - branches: ["main","dev"] - - pull_request: - branches: ["main","dev"] - - - issues: - types: - - opened - - labeled - -jobs: - - build: - runs-on: ubuntu-latest - strategy: - matrix: - go-version: ['1.22.3'] - - steps: - - uses: actions/checkout@v4 - - name: Setup Go ${{ matrix.go-version }} - uses: actions/setup-go@v4 - with: - go-version: ${{ matrix.go-version }} - cache: false - - - name: Build - run: go build -v ./... - - - name: Test - run: go test -v ./... - env: - GOOS: linux