We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9be389b commit 0190eaeCopy full SHA for 0190eae
.github/workflows/ci.yml
@@ -11,12 +11,12 @@ env:
11
12
jobs:
13
build:
14
- name: Lint and Test
+ name: Lint, Test, and Build (${{ matrix.os }})
15
runs-on: ${{ matrix.os }}
16
strategy:
17
- fail-fast: false
18
- matrix:
19
- os: [ubuntu-latest, windows-latest]
+ fail-fast: false
+ matrix:
+ os: [ubuntu-latest, macos-latest, windows-latest]
20
21
steps:
22
- name: Checkout
@@ -46,3 +46,15 @@ jobs:
46
47
- name: Cargo test
48
run: cargo test
49
+
50
+ - name: Cargo build (release)
51
+ run: cargo build --release
52
53
+ - name: Upload artifact
54
+ uses: actions/upload-artifact@v4
55
+ with:
56
+ name: ollama-rename-${{ runner.os }}
57
+ path: |
58
+ target/release/ollama-rename.exe
59
+ target/release/ollama-rename
60
+ if-no-files-found: ignore
0 commit comments