Skip to content

Commit

Permalink
Merge pull request #1 from IvanNardi/ci
Browse files Browse the repository at this point in the history
Add basic Continuous Integration via GitHub Actions
  • Loading branch information
IvanNardi authored Jan 7, 2024
2 parents 8a21f14 + 011969d commit 264209e
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
types: [opened, synchronize, reopened]
release:
types: [created]
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Ubuntu Prerequisites
run: |
sudo apt-get update
sudo apt-get install libpcap-dev
- name: Run Scripts
run: |
cd tests/
make clean && make
./run-utests.sh
cd ../fuzz
make clean && make
./run-fuzzer.sh

0 comments on commit 264209e

Please sign in to comment.