[person/department] new func to add department or get one by name #131
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: Gazu CI | |
on: [push, pull_request] | |
jobs: | |
ci: | |
name: Test with different versions of Python π | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] | |
include: | |
- version: "2.7" | |
container: python:2.7.18-buster | |
container: ${{ matrix.container }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
if: matrix.version != '2.7' | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.version }} | |
cache: pip | |
- name: Upgrade pip π¦ | |
run: >- | |
python -m | |
pip install | |
--upgrade | |
pip | |
- name: Install packages π¦ | |
run: >- | |
python -m | |
pip install | |
-r requirements.txt | |
- name: Run tests π§ͺ | |
run: >- | |
py.test |