Skip to content

new github action

new github action #1

Workflow file for this run

name: CI/CD
on:
push:
branches:
- github-actions
jobs:
geral:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: “3.11"
- name: Poetry Install
uses: knowsuchagency/poetry-install@v2
- name: Run Tests
run: |
cd tutorial && python manage.py test
- name: Run formatter
run: |
black --check .