Skip to content

Commit

Permalink
test: replace drone runner with GH actions runner
Browse files Browse the repository at this point in the history
  • Loading branch information
berkes committed Oct 9, 2023
1 parent 6d53ff2 commit 5b4bccb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 25 deletions.
22 changes: 0 additions & 22 deletions .drone.yml

This file was deleted.

10 changes: 7 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Check
run: cargo check --verbose --all
- name: Fmt
run: cargo fmt --check --verbose --all
- name: Clippy
run: cargo clippy --verbose --all
- name: Run tests
run: cargo test --verbose
run: cargo test --verbose --all

0 comments on commit 5b4bccb

Please sign in to comment.