mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 13:15:21 +00:00
workflow update
This commit is contained in:
parent
b0e95926a8
commit
2dcafaf585
4
.github/dependabot.yml
vendored
4
.github/dependabot.yml
vendored
|
@ -3,8 +3,8 @@ updates:
|
|||
- package-ecosystem: "cargo"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
interval: "weekly"
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
interval: "weekly"
|
||||
|
|
10
.github/workflows/rust.yml
vendored
10
.github/workflows/rust.yml
vendored
|
@ -35,6 +35,11 @@ jobs:
|
|||
toolchain: stable
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
- name: Upload build artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: build-artifacts
|
||||
path: target/debug/linutil
|
||||
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -60,6 +65,11 @@ jobs:
|
|||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
- name: Download build artifacts
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: build-artifacts
|
||||
path: target/debug
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
||||
- name: Replace linutil binary
|
||||
|
|
Loading…
Reference in New Issue
Block a user