This guide will show you how to set up and use the official GitHub Action for SurrealDB in your CI/CD pipeline.
Create a new YAML file in your repository’s .github/workflows
directory. You can name the file surrealdb-ci.yml
.
name: SurrealDB CI on: [push, pull_request] jobs: test: runs-on: ubuntu-latest steps: - name: Git checkout uses: actions/checkout@v4 - name: Start SurrealDB uses: surrealdb/setup-surreal@v1 with: surrealdb_version: latest surrealdb_port: 8000 surrealdb_username: root surrealdb_password: root surrealdb_auth: true surrealdb_strict: true surrealdb_log: info surrealdb_additional_args: --allow-all
The official SurrealDB GitHub Action accepts several arguments to configure the SurrealDB setup. Here’s a breakdown of the available arguments and their defaults:
Argument | Description | Default | Value |
---|---|---|---|
surrealdb_version | SurrealDB version to use | latest | latest, v1.x.x |
surrealdb_port | Port to run SurrealDB on | 8000 | Valid number from 0 to 65535 |
surrealdb_username | Username to use for SurrealDB | Customisable by the user | |
surrealdb_password | Password to use for SurrealDB | Customisable by the user | |
surrealdb_auth | Enable authentication | true, false | |
surrealdb_strict | Enable strict mode | true, false | |
surrealdb_log | Enable logs | none, full, warn, info, debug, trace | |
surrealdb_additional_args | Additional arguments for SurrealDB | Any valid SurrealDB CLI arguments |
Here is an example configuration that sets specific values for each argument:
name: SurrealDB CI on: [push, pull_request] jobs: test: runs-on: ubuntu-latest steps: - name: Git checkout uses: actions/checkout@v4 - name: Start SurrealDB uses: surrealdb/setup-surreal@v1 with: surrealdb_version: latest surrealdb_port: 8000 surrealdb_username: root surrealdb_password: root surrealdb_auth: true surrealdb_strict: true surrealdb_log: debug surrealdb_additional_args: --strict-mode --other-arg
After creating and customising your workflow file, commit and push it to your repository:
git add .github/workflows/surrealdb-ci.yml git commit -m "Add SurrealDB CI workflow" git push origin main
Go to your repository on GitHub and navigate to the “Actions” tab. You should see your workflow running when you push changes or create a pull request. Check the logs to verify that SurrealDB is starting up correctly and that all steps are executed successfully.
Using the official GitHub Action for SurrealDB simplifies the process of setting up and running SurrealDB in your CI/CD pipeline. Customise the workflow as per your project requirements, and ensure you follow best practices for security and version control. Happy coding!