forked from C5T/Current
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (33 loc) · 814 Bytes
/
tests.yml
File metadata and controls
35 lines (33 loc) · 814 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
name: tests
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize]
push:
branches:
- stable
jobs:
run-ubuntu:
runs-on: ubuntu-latest
steps:
- name: git clone
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: sudo apt-get install nasm
run: sudo apt-get install nasm
- name: make -j individual_tests
run: GTEST_COLOR=yes make -j individual_tests
run-macos:
runs-on: macos-latest
steps:
- name: git clone
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: install md5sum
run: brew install md5sha1sum
- name: install nasm
run: brew install nasm
- name: make -j individual_tests
run: GTEST_COLOR=yes make -j individual_tests