From a59655607dc74eb5f002fa9436e37aaabbcdfc11 Mon Sep 17 00:00:00 2001 From: Dzung Tran Date: Sun, 14 Aug 2022 07:33:11 +0000 Subject: [PATCH] Remove unused workflow --- .github/workflows/go.yaml | 45 --------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .github/workflows/go.yaml diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml deleted file mode 100644 index 54068ae..0000000 --- a/.github/workflows/go.yaml +++ /dev/null @@ -1,45 +0,0 @@ -name: Go - -on: - push: - branches: - - 'main' - tags: - - 'v*' - pull_request: - branches: - - 'main' - -jobs: - Testing: - runs-on: ubuntu-latest - steps: - # - uses: harmon758/postgresql-action@v1 - # with: - # postgresql version: '14' - # postgresql db: 'test' - # postgresql user: 'test' - # postgresql password: 'test' - - # - uses: shogo82148/actions-setup-redis@v1 - # with: - # redis-version: "6" - - - uses: actions/checkout@v2 - - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.18 - - - name: Download dependencies - run: go mod tidy - - # - name: Unit test - # shell: bash - # env: - # ## base64 encoded file content: cat .env | base64 - # ENV_FILE: ${{ secrets.ENV_FILE }} - # run: | - # echo $ENV_FILE | base64 -d > .env.test - # go test -v ./... \ No newline at end of file