Upgrade Go to 1.20, other libraries to remove vulnerabilities #97
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: V1 Alibi Detect Tests | |
on: | |
push: | |
branches: [ master, rabbitmq* ] | |
pull_request: | |
branches: [ master, rabbitmq* ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
container: seldonio/python-builder:0.6 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip setuptools | |
make -C components/alibi-detect-server dev_install | |
- name: Lint | |
run: | | |
make -C components/alibi-detect-server lint | |
python-tests: | |
runs-on: ubuntu-latest | |
container: seldonio/python-builder:0.6 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip setuptools | |
apt-get update | |
apt-get -y install ffmpeg libsm6 libxext6 | |
make -C components/alibi-detect-server dev_install | |
- name: Test | |
run: | | |
make -C components/alibi-detect-server test |