Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,19 @@ jobs:
run: cargo clippy --all-features --all-targets -- -Dwarnings
- name: Run tests
run: cargo test
- name: Build Release
run: cargo build --release
- name: Upload artifacts linux
if: "matrix.target != 'x86_64-pc-windows-msvc'"
uses: actions/upload-artifact@v4
with:
name: rosu-memory-${{ matrix.target }}
path: target/release/rosu-memory
retention-days: 5
- name: Upload artifacts windows
if: "matrix.target == 'x86_64-pc-windows-msvc'"
uses: actions/upload-artifact@v4
with:
name: rosu-memory-${{ matrix.target }}.exe
path: target/release/rosu-memory.exe
retention-days: 5
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: rosu-memory

on:
release:
types: ["published"]
push:
branches: ["master"]
pull_request:
Expand Down