Skip to content

Commit

Permalink
fix: Corrected GitHub Actions configuration to res
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Jan 1, 2024
1 parent 26ad6a8 commit e4069a2
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Python application

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Print debugging information
run: |
python --version
pip freeze
pwd
- name: Run tests
run: |
pytest tests

0 comments on commit e4069a2

Please sign in to comment.