diff --git a/.github/workflows/release-on-tag.yml b/.github/workflows/release-on-tag.yml index b5eac8c..33c214f 100644 --- a/.github/workflows/release-on-tag.yml +++ b/.github/workflows/release-on-tag.yml @@ -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 diff --git a/.github/workflows/test-on-push.yml b/.github/workflows/test-on-push.yml index 44d7613..f950799 100644 --- a/.github/workflows/test-on-push.yml +++ b/.github/workflows/test-on-push.yml @@ -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