Option for asynchronous writes in TarWriter. #77
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: CI on push | |
on: push | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.10', '3.11'] # Add 3.12 when pytorch has a wheel | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install package | |
run: | | |
bash ./build.sh | |
pip install -e .[dev] | |
pip install pocl-binary-distribution # Required for test that use ppafm opencl functionality | |
- name: Lint with flake8 | |
run: flake8 . | |
- name: Run pytest | |
run: pytest | |