Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit

Permalink
use RDX works actions
Browse files Browse the repository at this point in the history
  • Loading branch information
CyonAlexRDX committed Aug 27, 2024
1 parent 07d1622 commit f22f933
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
check-formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: RDXWorks-actions/checkout@main

- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1
uses: RDXWorks-actions/toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
default: true
Expand All @@ -35,10 +35,10 @@ jobs:
check-clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: RDXWorks-actions/checkout@main

- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1
uses: RDXWorks-actions/toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
default: true
Expand All @@ -51,10 +51,10 @@ jobs:
test-rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: RDXWorks-actions/checkout@main

- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1
uses: RDXWorks-actions/toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
default: true
Expand All @@ -66,16 +66,16 @@ jobs:
code-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: RDXWorks-actions/checkout@main

- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1
uses: RDXWorks-actions/toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
default: true

- name: Install cargo tarpaulin
uses: actions-rs/install@v0.1
uses: RDXWorks-actions/cargo-install@main
with:
crate: cargo-tarpaulin
tag: 0.30.0
Expand All @@ -85,7 +85,7 @@ jobs:
run: cargo tarpaulin --out xml

- name: Code Coverage - Upload to CodeCov.io
uses: codecov/codecov-action@v4
uses: RDXWorks-actions/codecov-action@main
with:
token: ${{ secrets.CODECOV }}
fail_ci_if_error: true

0 comments on commit f22f933

Please sign in to comment.