From f287a0092fad57d459fff585eb96d31a5cf2ef58 Mon Sep 17 00:00:00 2001 From: LokiSharp Date: Sat, 16 Dec 2023 00:13:54 +0800 Subject: [PATCH] Test remote testing --- .github/workflows/main.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a61d0994..58c061b3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,10 +43,24 @@ jobs: uses: dtolnay/rust-toolchain@master with: toolchain: stable-${{ matrix.target }} + + - name: Set up Python 3.12 + uses: actions/setup-python@v1 + with: + python-version: 3.12 + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install -U tmate + - name: SSH connection to Actions + run: | + python -m tmate - name: Run tests run: cargo test --all-features + + test-macos: runs-on: macos-latest steps: