Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/workflows/commits.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
wheels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@6
- uses: dtolnay/rust-toolchain@stable
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: 3.7
python-version: 3.10
- name: Prepare build
run: |
make all
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- uses: pre-commit/action@v3.0.1
env:
SKIP: "trufflehog"
Expand All @@ -28,29 +28,29 @@ jobs:
fail-fast: false
matrix:
py:
- "3.14"
- "3.13"
- "3.12"
- "3.11"
- "3.10"
- "3.9"
- "3.8"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Prepare build
working-directory: .
run: |
make all
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Setup python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.py }}
cache: 'poetry'
- name: Install Deps
run: |
poetry install
- name: Prepare build
working-directory: .
run: |
make all
- name: Install csv_gp
run: |
poetry run maturin develop
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install toolchain
uses: actions-rs/toolchain@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/secret_scanning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
echo "branch=${{ github.event.pull_request.head.ref }}" >> $GITHUB_ENV
fi
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
ref: ${{env.branch}}
fetch-depth: ${{env.depth}}
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
repos:
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.6.5'
rev: 'v0.14.10'
hooks:
- id: ruff
- id: ruff-check
args: [ "--fix" ]
- id: ruff-format

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.6.0"
rev: "v6.0.0"
hooks:
- id: trailing-whitespace
- id: check-ast
Expand All @@ -29,7 +29,7 @@ repos:
- id: clippy
args: ["--all-targets", "--", "-D", "warnings"]
- repo: https://github.com/trufflesecurity/trufflehog.git
rev: "v3.84.2"
rev: "v3.92.4"
hooks:
- id: trufflehog
name: TruffleHog
Expand Down
Loading
Loading