Fix a bug in print_radixu() #479
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: Builds and tests | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ $default-branch ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install xcompiler | |
run: ./scripts/install-ci.sh | |
- name: Print xcompiler version | |
run: riscv64-linux-gnu-gcc --version | |
- name: Build qemu-image | |
run: make build-qemu-image | |
- name: Make all binaries | |
run: make all | |
- name: Run all tests | |
run: ./scripts/run-all-tests.sh |