diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6751033..8dcab03 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -4,4 +4,13 @@ jobs: test: runs-on: ubuntu-latest steps: - - run: echo "CI works" + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup Rust + uses: actions/setup-rust@v4 + with: + rust-version: stable + + - name: Build + run: cargo build --all-features --verbose