Skip to content

entry

entry #5

Workflow file for this run

name: Test cavriago
on:
- push
- pull_request
- workflow_dispatch
jobs:
audit-novellara-staging:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Run audit 1
uses: ./
with:
url: 'https://www.comune.cavriago.re.it'
type: 'municipality'
scope: 'online'
- name: Upload artifact
uses: actions/upload-artifact@master
with:
name: report
path: './report'
- name: Publish HTML report
if: always() # We want this to always run, even if test fail prior to this step running
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: report/
keep_files: true
user_name: 'github-actions[bot]' # This will be the username that gets stamped in the repo commit
user_email: 'github-actions[bot]@users.noreply.github.com' # This will be the user email that gets stamped in the repo commit