Skip to content

Commit

Permalink
Fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
wookie184 committed Dec 19, 2022
1 parent 9e5cb13 commit 71a798d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and test
name: Build release and upload artifacts

on: workflow_dispatch

Expand Down
25 changes: 13 additions & 12 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint
name: Lint and test

on:
push:
Expand All @@ -10,19 +10,20 @@ env:
CARGO_TERM_COLOR: always

jobs:
runs-on: ubuntu-latest
lint-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
steps:
- uses: actions/checkout@v3

- name: Run formatter
run: cargo fmt --check --verbose
- name: Run formatter
run: cargo fmt --check --verbose

- name: Run linter
run: cargo clippy --verbose
- name: Run linter
run: cargo clippy --verbose

- name: Build
run: cargo build --verbose
- name: Build
run: cargo build --verbose

- name: Run tests
run: cargo test --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit 71a798d

Please sign in to comment.