page: add page-switch-to-{parent-,}frame! #44
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
on: [push, pull_request] | |
name: CI | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Cache Racket dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cache/racket | |
~/.local/share/racket | |
key: ${{ runner.os }}-racket-8.2 | |
- uses: Bogdanp/[email protected] | |
with: | |
architecture: 'x64' | |
distribution: 'full' | |
variant: 'CS' | |
version: '8.2' | |
- run: raco pkg install --auto --skip-installed marionette-lib/ marionette-doc/ marionette-test/ marionette/ | |
- run: raco pkg update marionette-lib/ marionette-doc/ marionette-test/ marionette/ | |
- run: env PLTSTDERR='error debug@marionette' raco test marionette-test/ | |
env: | |
MARIONETTE_INTEGRATION_TESTS: x |