Use 128-byte pickle for libolm-unpickling #2
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: Python tests | |
on: | |
push: | |
pull_request: | |
branches: [main] | |
jobs: | |
Test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: [3.9] | |
include: | |
- os: ubuntu-latest | |
python-version: "3.10" | |
- os: ubuntu-latest | |
python-version: 3.8 | |
- os: ubuntu-latest | |
python-version: 3.7 | |
runs-on: "${{ matrix.os }}" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- uses: Swatinem/rust-cache@v1 | |
- run: python3 -m pip install nox | |
- name: Run nox for ${{ matrix.python-version }} | |
working-directory: ./python | |
run: nox -s test-${{ matrix.python-version }} |