Skip to content

Commit

Permalink
enable pull request tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tlhunter committed Aug 28, 2023
1 parent 8820d98 commit ca7556b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: pull-request

on:
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: actions/setup-go@v4
with:
go-version: '>=1.20.0'
- run: npm install -g zx
- run: make build
- run: cd tests/sqlite && ../test.mjs

0 comments on commit ca7556b

Please sign in to comment.