Skip to content

fix: Pull required launcher image for Docker Compose to work (#5) (#9) #2

fix: Pull required launcher image for Docker Compose to work (#5) (#9)

fix: Pull required launcher image for Docker Compose to work (#5) (#9) #2

Workflow file for this run

# Copyright Jiaqi Liu
---
name: CI/CD
"on":
pull_request:
push:
branches:
- master
jobs:
test:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox and any other packages
run: |
pip3 install tox
python3 setup.py install
working-directory: package
- name: Run tox (test)
run: tox
working-directory: package