Skip to content

Commit

Permalink
Update ci_check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkauzh committed Jan 8, 2024
1 parent 8450288 commit c7f1712
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/ci_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
contents: read

jobs:
build:
install:

runs-on: ubuntu-latest

Expand All @@ -32,13 +32,14 @@ jobs:
run: python -m pip install --upgrade pip

- name: Install packages
run: python -m pip install setuptools sdist wheel build
run: python -m pip install --user pdm

- name: Build module
run: python setup.py ci_check
- name: Install module (pdm)
run: python -m pdm install


build:

install:
runs-on: ubuntu-latest

steps:
Expand All @@ -50,7 +51,12 @@ jobs:

- name: Update PIP
run: python -m pip install --upgrade pip

- name: Install module
run: python setup.py install

- name: Install packages
run: python -m pip install --user pdm

- name: Build module (pdm)
run: python -m pdm build



0 comments on commit c7f1712

Please sign in to comment.