ci: Fix ubuntu build. #447
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: Checks (Ubuntu) | |
on: [ push, pull_request ] | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.13' | |
- name: Setup Build Environment | |
run: ./ck tools setup && ./ck tools doctor | |
- name: Build Libraries | |
run: ./ck builder build | |
- name: Test Libraries | |
run: ./ck builder test | |
- name: Run Reftests | |
run: ./ck reftests run --headless | |
- name: Check for formatting errors | |
run: ./meta/scripts/style-check.sh || echo "Please run ./meta/scripts/style-format.sh" |