-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (55 loc) · 1.3 KB
/
actions.yml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: tests
on:
workflow_dispatch:
push:
paths:
- include/**
- libs/**
- makerc/**
- src/**
# - unit_test/**
- Makefile
branches:
- main
pull_request:
paths:
- include/**
- libs/**
- makerc/**
- src/**
# - unit_test/**
- Makefile
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build project
run: make
# - name: Install dependencies
# run: |
# sudo apt-get update
# sudo apt-get install libreadline-dev lcov libcriterion-dev
# sudo pip install cpp-coveralls
# - name: Run tests
# run: make test_re
# - name: Generate Coverage
# run: make coverage_re
# - name: Coveralls GitHub Action
# uses: coverallsapp/github-action@v1
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# path-to-lcov: build/coverage.info
macos:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
# - name: Install dependencies
# run: |
# brew update && brew install criterion readline lcov
- name: Build project
run: make
# - name: Run tests
# run: make test_re