Skip to content

Update requirements.txt (#18) #22

Update requirements.txt (#18)

Update requirements.txt (#18) #22

Workflow file for this run

name: Continuous Integration 🐍
on: [push]
env:
PACKAGE_NAME: pytest-emoji-output
PACKAGE_VERSION: 0.2.1
jobs:
build_and_verify:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Static code analysis and unit tests
run: ./analyse-code.sh
- name: Build package
run: python setup.py install
- name: Setup BATS
uses: mig4/setup-bats@v1
with:
bats-version: 1.2.1
- name: Integration tests
run: bats test-package.bats