Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch from GitLab-CI to GitHub Actions #1033

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Run unit tests on main module
  • Loading branch information
flimzy committed Jul 22, 2024
commit 386aacf51dc1388bea71819b818084d4188bdac1
2 changes: 1 addition & 1 deletion .github/workflows/test-sqlite.yaml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ on:
pull_request:

jobs:
golangcilint:
test:
strategy:
matrix:
go-version: [1.22] # TODO: Add 1.23rc2
23 changes: 23 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: tests

on:
pull_request:

jobs:
test:
strategy:
matrix:
go-version: [1.22] # TODO: Add 1.23rc2
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
check-latest: true
go-version: ${{ matrix.go-version }}
- name: Run tests
run: |
go mod download
go test -race -shuffle=on ./...