Skip to content

Commit

Permalink
Testing why only one job runs
Browse files Browse the repository at this point in the history
  • Loading branch information
JanEricNitschke committed Jun 26, 2024
1 parent 95e504f commit a09a30b
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ on:
- main

jobs:
build_and_test:
name: Test Parser Rust
runs-on: ubuntu-latest
defaults:
run:
working-directory: src/parser
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable

- name: Build in src/parser directory
run: cargo test --release
# build_and_test:
# name: Test Parser Rust
# runs-on: ubuntu-latest
# defaults:
# run:
# working-directory: src/parser
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# with:
# ref: ${{ github.event.pull_request.head.sha }}

# - name: Set up Rust toolchain
# uses: actions-rs/toolchain@v1
# with:
# toolchain: stable

# - name: Build in src/parser directory
# run: cargo test --release

test_python_bindings:
name: Test Python Bindings
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Build Wheels
uses: PyO3/maturin-action@v1
with:
command: develope
command: develop

- name: Run signature test
run: python tests/

0 comments on commit a09a30b

Please sign in to comment.