✨ Load a wiki page after Selenium is initialized to remind the user to look back at the terminal to answer more questions #33
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: Desktop tool tests | |
on: | |
pull_request: | |
paths: | |
- "desktop-tool/**" | |
workflow_dispatch: | |
jobs: | |
test-backend: | |
name: Desktop tool tests | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: macos-13 # TODO: revert back to macos-latest when https://github.com/actions/setup-python/issues/852 is fixed | |
- os: windows-latest | |
- os: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/test-desktop-tool | |
with: | |
google-drive-api-key: ${{ secrets.GOOGLE_DRIVE_API_KEY }} |