Skip to content

Bump actions/setup-python from 1 to 4 #23

Bump actions/setup-python from 1 to 4

Bump actions/setup-python from 1 to 4 #23

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: Python setup
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Poetry and Cookiecutter
run: |
sudo python -m pip install --upgrade pip
sudo pip install poetry cookiecutter
- name: Test Server Code
run: sudo make test-server-code
- name: Test Docker Compose
run: sudo make test-docker-compose