Fixing the build system #1007
This file contains hidden or 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: Inference API Python-tests | |
| on: | |
| pull_request: | |
| paths: | |
| - "**" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.8"] | |
| steps: | |
| - run: | | |
| sudo apt-get update | |
| sudo apt-get install ffmpeg | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| pip install --upgrade pip | |
| pip install -e .[test] | |
| - run: make test | |
| env: # Or as an environment variable | |
| API_TOKEN: ${{ secrets.USER_API_TOKEN }} |