Skip to content

Typo in test

Typo in test #3

name: integration-test
on:
push:
tags:
- '*'
jobs:
test:
strategy:
matrix:
pyver: ['3.10']
os: ['ubuntu-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.pyver }}
- name: Install dependencies
shell: bash
run: |
python -m pip install --upgrade pip
pip install git+https://github.com/dgbowl/dgpost.git@${{ github.ref }} yadg pytest
- name: Clone integration-tests
shell: bash
run: |
git clone https://github.com/dgbowl/integration-tests.git
cd integration-tests
- name: Run pytest
shell: bash
run: |
pytest -vvx