Feat/division property #1340
Workflow file for this run
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: Run pytest for Forked projects | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
types: [opened, synchronize, reopened, edited] | |
branches: | |
- develop | |
- main | |
concurrency: | |
group: fork-run-pytest-tests_${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-pytest: | |
if: ${{ github.event.repository.fork }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Run tests | |
run: docker run --rm -v $PWD:/home/sage/tii-claasp tiicrc/claasp-base:latest make github-pytest |