Skip to content

Make testsuite compatible with remote tools #278

Make testsuite compatible with remote tools

Make testsuite compatible with remote tools #278

Workflow file for this run

name: acceptance
on:
push:
pull_request:
branches: [ main ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
id: setup-python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install pipenv
run: pip install pipenv
- name: Week number
id: weeknum
run: |
echo "weeknum=$(/bin/date -u '+%g.%V')" >> $GITHUB_OUTPUT
shell: bash
- uses: actions/cache@v2
with:
path: |
~/.local/share/virtualenvs
Pipfile.lock
key: ${{ runner.os }}-w${{ steps.weeknum.outputs.weeknum }}-python-${{ steps.setup-python.outputs.python-version }}-pipenv-${{ hashFiles('Pipfile') }}
- name: Install dependencies
run: PIPENV_VERBOSITY=-1 make fake-sync pipenv-dev
- name: Run acceptance check
run: PIPENV_VERBOSITY=-1 make -k commit-acceptance