Skip to content

Commit

Permalink
new runner script for gitflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Majormekzy committed Aug 20, 2024
1 parent f6ee342 commit eef417a
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/runner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Python CI

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

jobs:
build:
runs-on: ubuntu-latest

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

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'

- name: Install dependencies
run: |
python -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with Flake8
run: |
source venv/bin/activate
flake8 .
- name: Run tests
run: |
source venv/bin/activate
pytest --junitxml=report.xml
- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
with:
name: test-results
path: report.xml

0 comments on commit eef417a

Please sign in to comment.