Skip to content

added macos tests

added macos tests #1

Workflow file for this run

name: Reportengine tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install hypothesis
pip install .
- name: Run tests
run: |
pytest
test-macos:

Check failure on line 29 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Reportengine tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 29, Col: 1): Unexpected value 'test-macos'
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install hypothesis
pip install .
- name: Run tests
run: |
pytest