From 04873fea9decd9ce5732db9c2de2ce2b5e8676c2 Mon Sep 17 00:00:00 2001 From: gs256 <51964952+gs256@users.noreply.github.com> Date: Wed, 7 Jan 2026 23:12:11 +0300 Subject: [PATCH 1/2] Create rust.yml --- .github/workflows/rust.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..3be69bb --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,26 @@ +name: Rust + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + - name: Build + run: cargo build --release --verbose + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: build-${{ matrix.os }} + path: target/release/ From d84eeb9e117fac7928dce48ac5eff893c5306384 Mon Sep 17 00:00:00 2001 From: gs256 <51964952+gs256@users.noreply.github.com> Date: Wed, 7 Jan 2026 23:17:06 +0300 Subject: [PATCH 2/2] Update ci artifacts --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 3be69bb..da90e8c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -20,7 +20,7 @@ jobs: - name: Build run: cargo build --release --verbose - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: build-${{ matrix.os }} path: target/release/