Skip to content

Commit

Permalink
Updates the Rust workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
matzefriedrich committed Jun 2, 2024
1 parent 8610f01 commit 5562ba0
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,19 @@ name: Rust

on:
push:
branches: [ master ]
branches:
- master
- feature/*
- fix/*

pull_request:
branches: [ master ]
branches:
- master
- feature/*
- fix/*

env:
CARGO_TERM_COLOR: always

jobs:
build:
Expand All @@ -13,7 +23,9 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: Build
run: cargo build --verbose

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

0 comments on commit 5562ba0

Please sign in to comment.