Skip to content

Remove vault items from reports #170

Remove vault items from reports

Remove vault items from reports #170

name: Build and deployment workflow
on:
push:
branches:
- master
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Login to container registry
run: echo "${{ secrets.CR_PAT }}" | docker login ghcr.io -u "${{ secrets.CR_USERNAME }}" --password-stdin
- name: Build
run: |
cp config-template.json config.json
make
- name: Run tests
run: make tests
- name: Run security tests
run: make security-tests
- name: Upload CC report
run: bash <(curl -s https://codecov.io/bash) -f tests/clover.xml
- name: Deploy
run: make build push