Skip to content

Commit

Permalink
.github/workflows/rust.yml:
Browse files Browse the repository at this point in the history
  • Loading branch information
RandyMcMillan committed Feb 9, 2023
1 parent e4b0d01 commit d4a9344
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Rust

on:
push:
branches: [ "master" ]
branches: [ "master", "**" ]
pull_request:
branches: [ "master" ]

Expand All @@ -17,6 +17,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
run: |
sudo apt install openssl-dev
cargo build --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit d4a9344

Please sign in to comment.