Skip to content

Commit

Permalink
Disable tests in pipeline
Browse files Browse the repository at this point in the history
There are no unit tests at the moment
chamilad committed Oct 15, 2024
1 parent 2edbafc commit 0b6d65d
Showing 2 changed files with 29 additions and 29 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/release-on-tag.yml
Original file line number Diff line number Diff line change
@@ -20,18 +20,18 @@ jobs:
run: |
cargo fmt -- --check && cargo clippy -- -Dwarnings
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Run tests
run: |
cargo test # no tests at the moment
# test:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions-rust-lang/setup-rust-toolchain@v1
# - name: Run tests
# run: |
# cargo test # no tests at the moment

build-armv7-and-sign:
needs:
- test
- lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
@@ -84,7 +84,7 @@ jobs:

build-x86-and-sign:
needs:
- test
- lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
@@ -138,7 +138,7 @@ jobs:

dilligence:
runs-on: ubuntu-latest
needs: test
needs: lint
permissions:
contents: read

36 changes: 18 additions & 18 deletions .github/workflows/test-on-push.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
---
name: test-on-push
run-name: Running tests on ${{ github.ref_name }} ${{ github.ref_type }}
on:
push:
branches:
- "**"
tags-ignore:
- "**"
# ---
# name: test-on-push
# run-name: Running tests on ${{ github.ref_name }} ${{ github.ref_type }}
# on:
# push:
# branches:
# - "**"
# tags-ignore:
# - "**"

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Test
run: |
cargo test # no tests at the moment
# jobs:
# lint:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions-rust-lang/setup-rust-toolchain@v1
# - name: Test
# run: |
# cargo test # no tests at the moment

0 comments on commit 0b6d65d

Please sign in to comment.