Add GitHub Actions workflow for Resqui CI #1
This file contains hidden or 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: Run Resqui CI | |
| on: | |
| push: | |
| jobs: | |
| run-resqui: | |
| runs-on: ubuntu-latest | |
| # make sure to match the environment's name | |
| environment: resqui | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run resqui action | |
| uses: EVERSE-ResearchSoftware/QualityPipelines@main | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| dashverse_token: ${{ secrets.DASHVERSE_TOKEN }} | |
| # a configuartion file is optional and can be placed at the root of the repository | |
| # config: .resqui.json |