Skip to content

Remove waypoint config and scripts #727

Remove waypoint config and scripts

Remove waypoint config and scripts #727

name: CI [python-did-resolver]
on:
pull_request:
paths:
- "packages/python-did-resolver/**"
- "packages/did-resolver/**"
- "packages/test-support/**"
- "packages/eslint-config/**"
- ".github/workflows/pr-python-did-resolver.yml"
- "package.json"
- "yarn.lock"
jobs:
test:
name: Build and Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/python-did-resolver
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/init
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pdm
pdm config python.use_venv false
pdm install -d
- name: Test with pytest
run: |
pdm run -s pytest tests