Skip to content

Bump pandas from 2.2.0 to 2.2.1 in /manager #268

Bump pandas from 2.2.0 to 2.2.1 in /manager

Bump pandas from 2.2.0 to 2.2.1 in /manager #268

Workflow file for this run

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