Switch re to re2 #262
Workflow file for this run
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: CI Test Action | |
on: | |
pull_request: | |
branches: [ main ] | |
env: | |
MODE: emu | |
ENV_FILE: ${{ secrets.ENV_FILE }} | |
jobs: | |
BuildAndTest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
- name: Set up environment | |
run: echo $ENV_FILE | base64 --decode > manager/.env && make init | |
- name: Build Containers | |
run: make build | |
- name: Run tests | |
run: make test | |
- name: Dump docker logs on failure | |
if: failure() | |
uses: jwalton/gh-docker-logs@v2 |