Skip to content

Commit

Permalink
Add simple CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bbannier committed May 28, 2024
1 parent dc8c8bc commit 8622d82
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Check

on:
pull_request:
push:
branches: [master]

jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
zeek_version:
- zeek-lts
- zeek

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: zeek/action-zkg-install@v2
with:
zeek_version: ${{ matrix.zeek_version }}

0 comments on commit 8622d82

Please sign in to comment.