diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 570d8e9..e69de29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,27 +0,0 @@ -name: Go Build and Test - -on: - push: - branches: - - "cicd-test" - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: '1.22.5' - - - name: Create .env file from secret - run: echo "${{ secrets.ENV }}" > .env - - - name: Install dependencies - run: go mod tidy - - - name: Run tests - run: go test ./...