2 # Trigger the workflow on push or
3 # pull request, but only for the
11 # Allow manual triggering
13 # Weekly run to account for
14 # changed dependencies.
22 runs-on: ${{ matrix.os }}
39 uses: actions/checkout@v3
41 - name: Set up Python ${{ matrix.python-version }}
42 uses: actions/setup-python@v3
44 python-version: ${{ matrix.python-version }}
47 uses: actions/cache@v3
49 # This path is specific to Ubuntu
51 # Look to see if there is a cache hit for the corresponding requirements file
52 key: v1-pip-${{ runner.os }}-${{ matrix.python-version }}
54 v1-pip-${{ runner.os }}
57 - name: Install dependencies
59 pip install setuptools
62 pip install myst-parser
63 sudo apt-get install -yy libacl1-dev
65 - name: Build the code
66 run: python ./setup.py build_ext -i
69 run: python -m pytest tests
74 - name: Re-build with coverage info
75 run: CFLAGS="-coverage" python ./setup.py build_ext -i
77 - name: Test with coverage
78 run: python -m pytest tests
80 - name: Upload coverage to Codecov
81 uses: codecov/codecov-action@v3
83 #files: ./coverage1.xml,./coverage2.xml
84 #directory: ./coverage/reports/
87 name: codecov-python-${{ matrix.python-version }}
88 #fail_ci_if_error: true
92 - name: Build documentation