Skip to content

feat!: introduce conventional commits #83

feat!: introduce conventional commits

feat!: introduce conventional commits #83

Workflow file for this run

name: Build Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install libpcap
run: sudo apt-get install -y libpcap-dev
- name: Build fluere-plugin
run: cd plugin; cargo build --release --verbose
- name: Build fluereflow
run: cd fluereflow; cargo build --release --verbose
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
- name: Run Clippy
run: cargo clippy --fix --allow-dirty --allow-staged --release --verbose