update plugins to fit new template logic #139
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: Tests | |
on: | |
push: | |
branches: [dev, main] | |
jobs: | |
codeql: | |
uses: ./.github/workflows/codeql.yml | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
setup: | |
needs: codeql | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Get BW tag | |
run: | | |
if [ "$GITHUB_REF" = "refs/heads/main" ] ; then | |
echo "BW_TAG=1.5.5" >> $GITHUB_ENV | |
else | |
echo "BW_TAG=dev" >> $GITHUB_ENV | |
fi | |
- name: Login to Docker Hub | |
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Pull and build BW | |
run: ./.tests/bw.sh "${{ env.BW_TAG }}" | |
- name: Run ClamAV tests | |
run: ./.tests/clamav.sh | |
- name: Run Coraza tests | |
run: ./.tests/coraza.sh | |
- name: Run CrowdSec live tests | |
run: ./.tests/crowdsec.sh live | |
- name: Run CrowdSec stream tests | |
run: ./.tests/crowdsec.sh stream | |
- name: Run VirusTotal tests | |
run: ./.tests/virustotal.sh | |
env: | |
VIRUSTOTAL_API_KEY: ${{ secrets.VIRUSTOTAL_API_KEY }} | |
- name: Build and push APIs | |
if: env.BW_TAG == '1.5.5' | |
run: ./.tests/build-push.sh "${{ env.BW_TAG }}" |