Merge pull request #278 from GBLS/bug-ntq-pictures-i #52
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: ALKiln v5 tests | |
on: | |
push: | |
workflow_dispatch: | |
inputs: | |
tags: | |
description: 'Optional. Use a "tag expression" specify which tagged tests to run. See https://cucumber.io/docs/cucumber/api/#tag-expressions for syntax.' | |
default: '' | |
# To run your tests on a schedule, delete the first "#" symbol at the beginning of each line below. | |
## Also see https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule | |
## Also see https://crontab.guru/examples.html | |
#schedule: | |
# - cron: '0 1 * * TUE' | |
jobs: | |
interview-testing: | |
runs-on: ubuntu-latest | |
name: Run interview tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use ALKiln to run tests | |
uses: SuffolkLITLab/ALKiln@v5 | |
with: | |
SERVER_URL: "${{ secrets.SERVER_URL }}" | |
DOCASSEMBLE_DEVELOPER_API_KEY: "${{ secrets.DOCASSEMBLE_DEVELOPER_API_KEY }}" | |
- run: echo "Finished running ALKiln tests" |