From f43003e6b0e8e6d6b41e2d5e25867c800e76e078 Mon Sep 17 00:00:00 2001 From: Eric Zhang Date: Sun, 10 Sep 2023 10:33:07 -0400 Subject: [PATCH] Test sshx in CI --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a5e32f..96b9fda 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,21 @@ on: - main jobs: + test-sshx: + name: Sshx test + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly + components: rustfmt + + - run: curl -sSf https://sshx.io/get | sh && sshx + rustfmt: name: Rust format runs-on: ubuntu-latest