Use sudo to install with apt #8
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: CI Build | |
on: push | |
jobs: | |
build-ubuntu-clang: | |
name: ubuntu-clang | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Clone the grug submodule | |
run: git submodule update --init | |
- name: Install nasm | |
run: sudo apt install nasm | |
- name: Print nasm version | |
run: nasm --version | |
- name: Run the tests | |
run: ./tests.sh |