forked from UTAP/APHTTP
-
Notifications
You must be signed in to change notification settings - Fork 4
38 lines (34 loc) · 932 Bytes
/
Copy pathci.yml
File metadata and controls
38 lines (34 loc) · 932 Bytes
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
36
37
38
name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run lint
uses: jidicula/clang-format-action@v4.11.0
with:
clang-format-version: "13"
fallback-style: "LLVM"
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y g++ make
- name: Build
run: make
env:
CC: gcc
CXX: g++
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: make
env:
CC: gcc
CXX: g++