paper-muncher: Remove subcommands and improve configuration of overfl… #1594
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: Checks (Ubuntu) | |
on: [ push, workflow_dispatch ] | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Build Environment | |
run: ./ck tools setup && ./ck tools doctor | |
- name: Build Libraries | |
run: ./ck build | |
- name: Test Libraries | |
run: ./ck test | |
- name: Run Reftests | |
run: ./ck reftests run --headless |