Bump github.com/quick/nimble from 10.0.0 to 13.0.0 in /Packages/RestrictedBrowser #130
Workflow file for this run
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: sigrid-pullrequest | |
on: [pull_request, workflow_dispatch] | |
concurrency: | |
group: build-sigrid-pullrequest-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
sigridci: | |
if: github.event.repository.name == 'nl-covid19-coronacheck-app-ios-private' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- run: "git clone https://github.com/Software-Improvement-Group/sigridci.git sigridci" | |
- name: "Run Sigrid CI" | |
env: | |
SIGRID_CI_TOKEN: "${{ secrets.SIGRID_CI_TOKEN }}" | |
run: "./sigridci/sigridci/sigridci.py --customer vws --system coronacheck-ios --source . --targetquality 3.5" | |
- name: "Save Sigrid CI results" | |
if: ${{ success() || failure() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
path: "sigrid-ci-output/**" | |
retention-days: 7 |