Skip to content

Commit

Permalink
Rename ci file
Browse files Browse the repository at this point in the history
  • Loading branch information
CourbeB committed Dec 8, 2023
1 parent b830b93 commit ed1c003
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Python package
on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install dev dependencies
run: pip install -r requirements_test.txt
- name: Run Linter
run: "Trainee should add command to run flake8"
- name: Run Vulture
run: "Trainee should add command to run vulture"
- name: Run tests
run: "Trainee should add command to run test"


0 comments on commit ed1c003

Please sign in to comment.