Skip to content

Commit

Permalink
Added github actions and codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
earmingol committed Dec 18, 2023
1 parent 89b088a commit 138edbf
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python
- name: Checkout code
uses: actions/checkout@v3

- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: "pip"
cache-dependency-path: |
requirements.txt

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Install package
run: |
Expand Down

0 comments on commit 138edbf

Please sign in to comment.