Skip to content

chore(ci): prevent code injection (#68) #58

chore(ci): prevent code injection (#68)

chore(ci): prevent code injection (#68) #58

Workflow file for this run

name: Source Coverage
on:
push:
branches:
- main
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y jq lcov
- name: Download Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: llvm-tools-preview
- name: Install llvm-tools
run: |
rustup component add llvm-tools-preview
cargo install cargo-binutils
cargo install rustfilt
- name: Run test coverage
id: coverage
env:
SKIP_HTML: "1"
run: |
/bin/bash -c ./test_coverage.sh
- name: Coveralls upload
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./cov_raw/tari_utilities.lcov