Make: Silence echoing for test report commands #780
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 | |
jobs: | |
os-python-matrix: | |
strategy: | |
matrix: | |
os: | |
- name: macos | |
icon: 🍏 | |
- name: ubuntu | |
icon: 🐧 | |
- name: windows | |
icon: 🪟 | |
python-version: | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
runs-on: ${{ matrix.os.name }}-latest | |
name: ${{ matrix.os.icon }} Python ${{ matrix.python-version }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install ICOc and dev/test packages | |
run: pip install -e .[test,dev] | |
- name: Check ICOc code base | |
run: make check | |
- name: Test ICOc | |
run: make test-no-hardware |