From 4e8345d028fe0007c1550d622ff8e4556da5d80d Mon Sep 17 00:00:00 2001 From: maxdml Date: Tue, 22 Jul 2025 09:58:31 -0700 Subject: [PATCH] remove redundant folder --- .github/workflow/tests.yml | 66 -------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 .github/workflow/tests.yml diff --git a/.github/workflow/tests.yml b/.github/workflow/tests.yml deleted file mode 100644 index 76d45ae8..00000000 --- a/.github/workflow/tests.yml +++ /dev/null @@ -1,66 +0,0 @@ -name: Run Go Tests - -on: - push: - branches: - - main - pull_request: - branches: - - main - types: - - ready_for_review - - opened - - reopened - - synchronize - workflow_dispatch: - -jobs: - test: - runs-on: ubuntu-latest - services: - # Postgres service container - postgres: - image: postgres:16 - env: - # Specify the password for Postgres superuser. - POSTGRES_PASSWORD: a!b@c$d()e*_,/:;=?@ff[]22 - # Set health checks to wait until postgres has started - options: >- - --health-cmd pg_isready - --health-interval 10s - --health-timeout 5s - --health-retries 5 - ports: - # Maps tcp port 5432 on service container to the host - - 5432:5432 - - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - fetch-tags: true - - - name: Setup Go - uses: actions/setup-go@v5 - with: - go-version: '1.23.x' - - - name: Cache Go modules - uses: actions/cache@v4 - with: - path: | - ~/go/pkg/mod - ~/.cache/go-build - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - - - name: Download dependencies - run: go mod download - - - name: Run tests - run: go test -v ./... - working-directory: ./dbos - env: - PGPASSWORD: a!b@c$d()e*_,/:;=?@ff[]22 - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file