Merge pull request #1 from Saverio976/rewrite #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Functionnal | |
on: | |
push: | |
branch: [main, dev] | |
jobs: | |
functionnal: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up PDM | |
uses: pdm-project/setup-pdm@v2 | |
with: | |
python-version: "3.x" | |
- name: Install Dependencies | |
run: pdm install --no-editable --no-lock | |
- name: Tests normal | |
run: pdm run test |