Skip to content

Commit

Permalink
Try out CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jrchatruc committed Aug 6, 2024
1 parent 6c372b3 commit 1b9a388
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 1b9a388

Please sign in to comment.