From 1b9a3882375e78100fe7cc9ee70ba0f90565ef9a Mon Sep 17 00:00:00 2001 From: Javier Chatruc Date: Tue, 6 Aug 2024 18:48:32 -0300 Subject: [PATCH] Try out CI --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..f5e0012 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: Test + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.9.18' + - name: Install pipenv + run: pip install pipenv + - name: Install dependencies + run: make install + - name: Setup Environment + run: make env + - name: Run tests + run: make test