Skip to content

Commit

Permalink
Setting up Actions (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanowen authored Feb 21, 2022
1 parent 7ae356e commit 9f0b938
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ jobs:
name: Check
runs-on: ubuntu-latest
steps:
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install libdbus-1-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
Expand All @@ -21,6 +23,8 @@ jobs:
name: Test Suite
runs-on: ubuntu-latest
steps:
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install libdbus-1-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
Expand All @@ -35,6 +39,8 @@ jobs:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install libdbus-1-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
Expand All @@ -51,6 +57,8 @@ jobs:
name: Clippy
runs-on: ubuntu-latest
steps:
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install libdbus-1-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
Expand Down

0 comments on commit 9f0b938

Please sign in to comment.