Commented out unicode error logging #1015
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 package and test | |
on: | |
push: | |
pull_request: | |
jobs: | |
checkout-test: | |
name: Checkout and test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: macos-latest | |
ENV_FILE: install/envs/mac.yml | |
- os: ubuntu-latest | |
ENV_FILE: install/envs/ubuntu.yml | |
fail-fast: false | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Create python 3.9 conda env | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
python-version: 3.9 | |
mamba-version: 1.3 # "*" | |
activate-environment: donkey | |
environment-file: ${{matrix.ENV_FILE}} | |
auto-activate-base: false | |
channels: default, conda-forge, pytorch | |
channel-priority: true | |
- name: Conda info and list | |
run: | | |
echo Environment file ${{matrix.ENV_FILE}} | |
conda info | |
conda list | |
- name: Install donkey | |
run: pip install -e .[pc] | |
- name: Run tests | |
run: pytest |