Add timeout to requests
calls
#25
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: Unit Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build Package | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set Up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- name: Install build dependencies | |
run: pip install build twine | |
- name: Build package | |
run: python -m build . | |
- name: Twine Check | |
run: twine check dist/* | |
test: | |
name: Run pytest | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 25 | |
strategy: | |
matrix: | |
python-version: ['3.10', '3.11', '3.12'] | |
steps: | |
- name: install netcat | |
run: sudo apt update && sudo apt install -y netcat | |
- name: make bash default shell | |
run: sudo ln -sf /bin/bash /bin/sh | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set Up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Install Codemodder Package | |
run: pip install . | |
- name: Install Dependencies | |
run: pip install -r dev_requirements.txt | |
- name: Run unit tests | |
run: pytest |