Skip to content

Commit

Permalink
Merge pull request #11 from transferwise/create_test_workflow
Browse files Browse the repository at this point in the history
create test workflow in github
  • Loading branch information
bkoseoglu authored Oct 1, 2024
2 parents 29e0847 + d25be66 commit a37ad85
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Run tests on merge

on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

steps:
# Checkout the repository code
- name: Checkout code
uses: actions/checkout@v3

# Set up Python environment
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10' # Use the Python version your project needs

# Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install lightgbm xgboost catboost # Install the libraries required for tests
pip install pytest
# Run tests using pytest
- name: Run tests
run: |
pytest --maxfail=1 --disable-warnings

0 comments on commit a37ad85

Please sign in to comment.