Skip to content

Commit

Permalink
Updated ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
loRes228 committed May 21, 2024
1 parent 43a9989 commit a22940a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup python
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,20 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Python ${{ matrix.python-version }} on ${{ matrix.os }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: pyproject.toml

- name: Install dependencies on Python ${{ matrix.python-version }} on ${{ matrix.os }}
- name: Install dependencies
run: pip install --editable .[dev,redis,mongo,sqlalchemy]

- name: Lint code on Python ${{ matrix.python-version }} on ${{ matrix.os }}
- name: Lint code
run: make lint

- name: Check installable on Python ${{ matrix.python-version }} on ${{ matrix.os }}
- name: Check installable
run: |
pip install build
python -m build --wheel
Expand Down

0 comments on commit a22940a

Please sign in to comment.