name: test on: push: branches: [ "master" ] pull_request: branches: [ "master" ] env: MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }} GOERLI_RPC_URL: ${{ secrets.GOERLI_RPC_URL }} jobs: check: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: nightly override: true - uses: Swatinem/rust-cache@v2 - uses: actions-rs/cargo@v1 with: command: check test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: nightly override: true - uses: Swatinem/rust-cache@v2 - uses: actions-rs/cargo@v1 with: command: test args: --all fmt: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: nightly override: true components: rustfmt - uses: Swatinem/rust-cache@v2 - uses: actions-rs/cargo@v1 with: command: fmt args: --all -- --check clippy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: nightly override: true components: clippy - uses: Swatinem/rust-cache@v2 - uses: actions-rs/cargo@v1 with: command: clippy args: --all -- -D warnings