Skip to content

Commit

Permalink
fix: remove tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Lash-L authored Nov 20, 2024
1 parent 698a81f commit 5288410
Showing 1 changed file with 42 additions and 42 deletions.
84 changes: 42 additions & 42 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,51 +13,51 @@ concurrency:
jobs:
# Make sure commit messages follow the conventional commits convention:
# https://www.conventionalcommits.org
commitlint:
name: Lint Commit Messages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: wagoid/[email protected]
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- uses: pre-commit/[email protected]
# commitlint:
# name: Lint Commit Messages
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - uses: wagoid/[email protected]
# lint:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v5
# with:
# python-version: "3.11"
# - uses: pre-commit/[email protected]

test:
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
os:
- ubuntu-latest
- windows-latest
- macOS-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: snok/[email protected]
- name: Install Dependencies
run: poetry install
shell: bash
- name: Test with Pytest
run: poetry run pytest
shell: bash
# test:
# strategy:
# fail-fast: false
# matrix:
# python-version:
# - "3.11"
# os:
# - ubuntu-latest
# - windows-latest
# - macOS-latest
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v4
# - name: Set up Python
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
# - uses: snok/[email protected]
# - name: Install Dependencies
# run: poetry install
# shell: bash
# - name: Test with Pytest
# run: poetry run pytest
# shell: bash
release:
runs-on: ubuntu-latest
needs:
- test
# needs:
# - test
concurrency: release
if: github.ref == 'refs/heads/release'
permissions:
Expand Down

0 comments on commit 5288410

Please sign in to comment.