Skip to content

Commit

Permalink
Try to fix CI, first attempt...
Browse files Browse the repository at this point in the history
  • Loading branch information
gbin committed Jul 9, 2024
1 parent 14b6593 commit b370bd4
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/general.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: General
name: "Copper CI/CD"

on:
push:
Expand All @@ -15,8 +15,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
- name: Install libudev-dev
run: sudo apt-get update && sudo apt-get install -y libudev-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit b370bd4

Please sign in to comment.