name: Run Tests on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Python 3.10 uses: actions/setup-python@v1 with: python-version: "3.10" - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - name: Test with pytest run: pytest - name: Install AF run: apt install arrayfire - name: Test array_api run: python -m pytest arrayfire/array_api