Skip to content

Commit

Permalink
automatic testing
Browse files Browse the repository at this point in the history
  • Loading branch information
l4r-s committed Mar 9, 2024
1 parent 7c21bfa commit 74bd70b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Testing

on:
push:
branches:
- '*'

jobs:
test:
name: Run Go Test
runs-on: self-hosted

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run tests
run: docker run -e GITHUB_ACTIONS="true" -v $(pwd):/app -w /app golang:1.20-bookworm go test -v

0 comments on commit 74bd70b

Please sign in to comment.