reftests: Skip non passing tests, enforce passing in the CI and impro… #434
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: Checks (Darwin) | |
on: [push, pull_request] | |
jobs: | |
build-all: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.11' | |
- name: Set up the build environment | |
run: ./ck tools setup && ./ck tools doctor | |
- name: Build Userspace (Host) | |
run: ./ck builder build | |
- name: Test Userspace (Host) | |
run: ./ck builder test |