forked from Levminer/trusted-signing-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
26 lines (23 loc) · 752 Bytes
/
build.yml
File metadata and controls
26 lines (23 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: Build and test
on:
push:
pull_request:
jobs:
build:
runs-on: windows-latest
env:
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Build and test
run: cargo test
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: "trusted-signing-cli.exe"
path: "target/release/trusted-signing-cli.exe"