-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (36 loc) · 755 Bytes
/
Copy pathci.yml
File metadata and controls
41 lines (36 loc) · 755 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
39
40
41
name: CI
on:
push:
branches:
- master
paths-ignore:
- "docs/**"
pull_request:
branches:
- master
paths-ignore:
- "docs/**"
jobs:
main:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- name: Install Zsh
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install zsh
- name: Zsh Version
run: zsh --version
- name: Update Submodules
run: make update_submodules
- name: Run Tests
run: make test