Two batches and loading to R incu locs #501
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
on: | |
push: | |
pull_request: | |
schedule: | |
# Run it at 5:30 UTC the 22nd of every month | |
- cron: '30 5 22 * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: main ${{ matrix.pip_install }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- run: pip install pip --upgrade | |
- run: pip install pyright pytest | |
- run: ./foreach.sh pip install --editable . | |
- run: ./run-tests.sh |