Skip to content

Commit

Permalink
updates workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiaudioTT committed Jul 22, 2023
1 parent 81f4f14 commit 105aeec
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/build-release-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff # pytest
# pip install ruff pytest for the future
pip install -r requirements.txt
- name: Lint with ruff
run: |
# stop the build if there are Python syntax errors or undefined names
ruff --format=github --select=E9,F63,F7,F82 --target-version=py37 .
# default set of ruff rules with GitHub Annotations
ruff --format=github --target-version=py37 .
# - name: Lint with ruff
# run: |
# # stop the build if there are Python syntax errors or undefined names
# ruff --format=github --select=E9,F63,F7,F82 --target-version=py37 .
# # default set of ruff rules with GitHub Annotations
# ruff --format=github --target-version=py37 .
# - name: Test with pytest
# run: |
# pytest
Expand All @@ -43,7 +43,8 @@ jobs:
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
prerelease: false
draft: true
title: "Development Build"
files: |
LICENSE.txt
Expand Down
4 changes: 2 additions & 2 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.3.0",
"version": "1.0.0",
"auto-update": false,
"date": "20-may-2023"
"date": "22-july-2023"
}

0 comments on commit 105aeec

Please sign in to comment.