docs: warn about new change, and remove section from man #60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 mod -- --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 |