Fix: Added more connect tests for ipv6 and cidr modifier #161
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "*" ] | |
workflow_dispatch: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ 'ubuntu-20.04' ] | |
python-version: [ '3.8', '3.9', '3.10', '3.11' ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: ankane/setup-elasticsearch@v1 | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
run: pipx install poetry | |
- name: Install dependencies | |
run: poetry install | |
- name: Run tests | |
run: poetry run pytest --cov=sigma --cov-report term --cov-report xml:cov.xml -vv | |
- name: Store coverage for badge | |
if: ${{ runner.os == 'Linux' }} | |
run: poetry run python print-coverage.py >> $GITHUB_ENV | |
- name: Create coverage badge | |
if: ${{ github.repository == 'SigmaHQ/pySigma-backend-elasticsearch' && github.event_name == 'push' && runner.os == 'Linux' }} | |
uses: schneegans/[email protected] | |
with: | |
auth: ${{ secrets.GIST_SECRET }} | |
gistID: 3c445ef26310e9f2d2ca09c697db1c71 | |
filename: SigmaHQ-pySigma-backend-elasticsearch.json | |
label: Coverage | |
message: ${{ env.COVERAGE }} | |
color: ${{ env.COVERAGE_COLOR }} |