Skip to content

Commit

Permalink
ci: run workflows on push
Browse files Browse the repository at this point in the history
  • Loading branch information
markhaehnel committed Nov 25, 2023
1 parent d81e045 commit d895409
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: CI

on:
workflow_dispatch:
push:
pull_request: {}

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand All @@ -18,7 +18,6 @@ jobs:
run: cargo build --all-features --all-targets --workspace

test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand All @@ -32,7 +31,6 @@ jobs:
run: cargo nextest run --all-features --workspace

rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand All @@ -46,7 +44,6 @@ jobs:
run: cargo fmt --all --check

clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down

0 comments on commit d895409

Please sign in to comment.