Chia @ 2.1.4rc1 and Gigahorse at 2.1.3giga26 with arm64 support. #1062
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: unit-tests | |
on: | |
push: | |
branches: | |
- 'develop' | |
env: | |
LANG: "en_US.UTF-8" | |
LANGUAGE: "en_US:en" | |
LC_ALL: "en_US.UTF-8" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r docker/requirements.txt | |
- name: Test with pytest | |
run: LANG=en_US.UTF-8 pytest |