[FIX] Synchronize pre-conditioner device when loading from checkpoint #166
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: Test | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
tests: | |
name: "Python ${{ matrix.python-version }}" | |
runs-on: ubuntu-latest | |
env: | |
USING_COVERAGE: '3.9' | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
make install-test | |
- name: Run test | |
run: | | |
make test |