Adapt post-check message to context #11
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: Test | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.8.12' # Version range or exact version of a Python version to use, using SemVer's version range syntax | |
architecture: 'x64' | |
- name: Install pytest | |
run: pip install -U pytest | |
- name: Run tests | |
run: make pytest |