Skip to content

Commit

Permalink
Updated github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tapiocaboy committed Oct 9, 2024
1 parent 93653d8 commit 1f22c3d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/general_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: stable

- name: Build project
run: cargo build --verbose

Expand All @@ -41,3 +41,13 @@ jobs:

- name: Generate documentation
run: cargo doc --no-deps --document-private-items

code_coverage:
needs: build
runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v3

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev libelf-dev libdw-dev cmake gcc

0 comments on commit 1f22c3d

Please sign in to comment.