Skip to content

Commit

Permalink
test run
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmylife committed Mar 25, 2024
1 parent 8056f91 commit ae0bcb5
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/run-backend-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: run-backend-tests

on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '0 9 1 * *'

jobs:
run:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
version: [10, 12, 14]

steps:
- uses: actions/checkout@v4

- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.21.0'

- name: Build
run: go build -v ./...

- name: Run backend tests
run: go test -v ./...

0 comments on commit ae0bcb5

Please sign in to comment.