Skip to content

Commit

Permalink
Merge branch 'main' into use-ws-id-envvar
Browse files Browse the repository at this point in the history
  • Loading branch information
philkra committed Jan 13, 2024
2 parents 91cb8c2 + fc98bbb commit aff8c86
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push]

jobs:
build:
runs-on: [self-hosted, default]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
Expand All @@ -21,11 +21,14 @@ jobs:
run: make test
env:
XATA_API_KEY: ${{ secrets.XATA_API_KEY }}
XATA_WORKSPACE_ID: ${{ secrets.XATA_WORKSPACE_ID }}
- name: Integration tests
run: make integration-test
env:
XATA_API_KEY: ${{ secrets.XATA_API_KEY }}
XATA_WORKSPACE_ID: ${{ secrets.XATA_WORKSPACE_ID }}
- name: Cleanup
run: make clean-workspaces
env:
XATA_API_KEY: ${{ secrets.XATA_API_KEY }}
XATA_WORKSPACE_ID: ${{ secrets.XATA_WORKSPACE_ID }}

0 comments on commit aff8c86

Please sign in to comment.