From 5c16ad4a9fe481cde82681ff3d833f2485148a25 Mon Sep 17 00:00:00 2001 From: beau-dev Date: Mon, 14 Oct 2024 21:34:30 +0200 Subject: [PATCH] chore: renamed workflow main file to ci --- .github/workflows/main.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 6d67723..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Run Action - -on: - workflow_dispatch: - push: - branches: [main, change/action-improvements] - pull_request: - branches: [main] - -jobs: - surrealdb-setup: - runs-on: ubuntu-latest - - name: Run Action - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Use Action - uses: ./ - with: - surrealdb_version: "v1.5.5" - surrealdb_port: "8000" - surrealdb_username: "root" - surrealdb_password: "root" - surrealdb_strict: true - surrealdb_log: "debug" - - - name: Retrieve SurrealDB version - run: curl http://127.0.0.1:8000/version - continue-on-error: true - - - name: List out docker containers - run: docker ps -a \ No newline at end of file