Skip to content

Bump leynos/shared-actions from c6559452842af6a83b83429129dccaf910e34562 to ebbaaa0d7a776ec3187f3940667e5c7c9379cdf5 #790

Bump leynos/shared-actions from c6559452842af6a83b83429129dccaf910e34562 to ebbaaa0d7a776ec3187f3940667e5c7c9379cdf5

Bump leynos/shared-actions from c6559452842af6a83b83429129dccaf910e34562 to ebbaaa0d7a776ec3187f3940667e5c7c9379cdf5 #790

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build-test:
runs-on: ubuntu-latest
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
BUILD_PROFILE: debug
steps:
- uses: actions/checkout@v5
- name: Setup Rust
uses: leynos/shared-actions/.github/actions/setup-rust@ebbaaa0d7a776ec3187f3940667e5c7c9379cdf5
- name: Format
run: make check-fmt
- name: Lint
run: make lint
- name: Test and Measure Coverage
uses: leynos/shared-actions/.github/actions/generate-coverage@ebbaaa0d7a776ec3187f3940667e5c7c9379cdf5
with:
output-path: lcov.info
format: lcov
- name: Upload coverage data to CodeScene
env:
CS_ACCESS_TOKEN: ${{ secrets.CS_ACCESS_TOKEN }}
if: ${{ env.CS_ACCESS_TOKEN }}
uses: leynos/shared-actions/.github/actions/upload-codescene-coverage@ebbaaa0d7a776ec3187f3940667e5c7c9379cdf5
with:
format: lcov
access-token: ${{ env.CS_ACCESS_TOKEN }}
installer-checksum: ${{ vars.CODESCENE_CLI_SHA256 }}