blob: 6667cdfc5ffc661389b372717c69c10e5dd39f2a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
name: Check โ
on:
workflow_dispatch:
push:
paths:
- "*"
pull_request:
paths:
- "*"
jobs:
check:
name: Check โ
runs-on: ubuntu-latest
steps:
- name: Checkout ๐
uses: actions/checkout@v3
- name: LLVM ๐งฐ
uses: KyleMayes/install-llvm-action@v1
with:
version: "12.0.1"
- name: Python, Ninja, & Meson ๐
run: |
sudo apt-get update
sudo apt-get install -y python3 python3-pip python3-setuptools python3-wheel ninja-build clang-tidy
pip3 install meson
- name: Test ๐งช
run: |
CC=clang meson build-clang
cd build-clang
ninja test
|