Skip to content

Merge branch 'main' of https://github.com/mathewsrc/GenerativeAI-Ques… #150

Merge branch 'main' of https://github.com/mathewsrc/GenerativeAI-Ques…

Merge branch 'main' of https://github.com/mathewsrc/GenerativeAI-Ques… #150

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Setup Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
pipx install poetry
poetry install
- name: Run format
run: make format
- name: Run lint
run: make lint
- name: Run tests
run: make test