Skip to content

Commit

Permalink
modify test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
codeitlikemiley committed Dec 18, 2023
1 parent 204c7f1 commit 224573c
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Rust Build and Test
name: Rust CI Test

on:
pull_request:
Expand All @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Install Rust
Expand All @@ -26,9 +26,3 @@ jobs:
run: cargo test --release --verbose -- --ignored
- name: Build
run: cargo build --verbose --release
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: snip-${{ matrix.os }}
path: |
./target/release/snip${{ matrix.os == 'windows-latest' && '.exe' || '' }}

0 comments on commit 224573c

Please sign in to comment.