Skip to content

Commit

Permalink
Merge pull request Gepetto#5 from TheoMF/add_CI
Browse files Browse the repository at this point in the history
Create CI file
  • Loading branch information
nim65s authored Aug 18, 2023
2 parents 2dabaad + 30e4fff commit 6c2dc35
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/gepetuto_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: check with gepetuto

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: pipx install poetry && poetry install
- name: check with gepetuto
run: gepetuto -vvca all

0 comments on commit 6c2dc35

Please sign in to comment.