Skip to content

Commit

Permalink
chore: fix ci rust test
Browse files Browse the repository at this point in the history
  • Loading branch information
JiLiZART committed Feb 2, 2024
1 parent 3e62a8d commit f56616d
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Rust

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

env:
CARGO_TERM_COLOR: always
Expand All @@ -13,8 +13,10 @@ jobs:
build:
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
with:
submodules: "true"
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit f56616d

Please sign in to comment.