This repository has been archived by the owner on Jan 9, 2025. It is now read-only.
add a deprecation note to readme (#114) #436
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check | |
on: | |
push: | |
env: | |
APIFY_STAGING_TOKEN: ${{ secrets.APIFY_STAGING_TOKEN }} | |
jobs: | |
build: | |
name: Build the specification file | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- run: python -m pip install schemathesis==3.35.0 | |
- run: npm install | |
- run: npm run build | |
- run: npm run test |