correct precision and move a3mega to new infra #4139
Workflow file for this run
This file contains hidden or 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
# Run all unit tests in files named as *_test.py | |
name: Unit Test | |
on: | |
pull_request: | |
branches: [master] | |
types: [opened, synchronize, edited] | |
push: | |
branches: [master] | |
workflow_dispatch: {} | |
jobs: | |
unit_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- uses: actions/setup-python@v4 | |
with: | |
# Note: this should match Cloud Composer | |
# https://cloud.google.com/composer/docs/concepts/versioning/composer-versions | |
python-version: '3.11' | |
- name: Install Python dependencies | |
run: pip install -r .github/requirements.txt | |
- name: Run tests | |
run: python3 -m unittest discover xlml "*_test.py" |