Install clang to run adress sanitizer

The address sanitizer job is silently failing at the moment because we
do not install clang.

Install clang so the address sanitizer job can run. Do not fix the
silent failure, that will be done later on.
This commit is contained in:
Tobin Harding 2022-03-19 10:24:57 +11:00
parent 96685c571d
commit f7bc7d3728
1 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,8 @@ jobs:
steps:
- name: Checkout Crate
uses: actions/checkout@v2
- name: Install clang for ASan
run: sudo apt-get install -y clang
- name: Checkout Toolchain
uses: actions-rs/toolchain@v1
with: