Skip to content

Commit

Permalink
Merge pull request #1 from benzlokzik/dev
Browse files Browse the repository at this point in the history
Added triggers for `workflow_dispatch` and `push` on every branch
  • Loading branch information
benzlokzik authored Nov 3, 2023
2 parents 69f485e + a820cf2 commit 5965c6a
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ name: Rust

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:


env:
CARGO_TERM_COLOR: always
Expand All @@ -15,8 +16,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit 5965c6a

Please sign in to comment.