Skip to content

Commit

Permalink
First stab at CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Simeon Miteff committed Aug 21, 2023
1 parent 4f462a4 commit 0a57420
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test
on:
pull_request:
push:
branches: [master]
jobs:
btests:
runs-on: ubuntu-latest
container: zeek/zeek-dev:latest
steps:
- name: Checkout Project
uses: actions/checkout@v3

- name: Install Golang and build deps
run: |
apt-get update
apt-get install golang libssl-dev -y
- name: Run btests
run: |
cd $GITHUB_WORKSPACE/tests
btest -v -D

0 comments on commit 0a57420

Please sign in to comment.