summaryrefslogtreecommitdiffstats
path: root/.github/workflows/rust.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/rust.yml')
-rw-r--r--.github/workflows/rust.yml12
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 42cd07d..fcb1ab8 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -16,9 +16,19 @@ jobs:
steps:
- uses: actions/checkout@v2
+
- name: Check style
run: cargo fmt -- --check
+
+ # this will report success even if there are warnings, and should be manually checked for now
+ - name: Lint
+ run: cargo clippy
+
- name: Build
run: cargo build --verbose
- - name: Run tests
+
+ - name: Run unit tests
run: cargo test --verbose
+
+ - name: Run end-to-end tests
+ run: test/e2e_test.sh