diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 14e13f6..247389f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -11,11 +11,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-rust@v1 - with: - rust-version: '1.75' - targets: 'wasm32-unknown-unknown' - - name: Install dependencies + - name: Setup Rust + run: | + rustup default stable + - name: Check compilation run: | cargo check --all-targets - name: Run tests