-
-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (35 loc) · 921 Bytes
/
tests.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
name: Tests
on:
push:
branches:
- 'master'
pull_request:
branches:
- '**'
workflow_call:
env:
CARGO_TERM_COLOR: always
jobs:
integration_tests:
name: Integration tests
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- run: cargo test --verbose --release --test integration_tests -- --test-threads 1
test_install_script:
name: Test install script
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Run install script
run: bash -c "$(curl -fsSL https://raw.githubusercontent.com/EduardoRodriguesF/quartz/master/install.sh)"
- name: Quartz path is found
run: which quartz
- name: Manpage works
if: ${{ matrix.os == 'ubuntu-latest' }}
run: man quartz > /dev/null 2>&1