Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Setup Rust
uses: leynos/shared-actions/.github/actions/setup-rust@f9f1c863c8a5bef64aa6779caa746e1a4a6c1ad4
uses: leynos/shared-actions/.github/actions/setup-rust@368d13d7884a484f4763308a5af3f487c607d171
- name: Format
run: make check-fmt
- name: Lint
run: make lint
- name: Test Only
run: make test
- name: Test and Measure Coverage
uses: leynos/shared-actions/.github/actions/generate-coverage@f9f1c863c8a5bef64aa6779caa746e1a4a6c1ad4
uses: leynos/shared-actions/.github/actions/generate-coverage@368d13d7884a484f4763308a5af3f487c607d171
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@f9f1c863c8a5bef64aa6779caa746e1a4a6c1ad4
uses: leynos/shared-actions/.github/actions/upload-codescene-coverage@368d13d7884a484f4763308a5af3f487c607d171
with:
format: lcov
access-token: ${{ env.CS_ACCESS_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ jobs:
- name: Clean dist directory
run: rm -rf dist
- name: Build ${{ matrix.bin }}
uses: leynos/shared-actions/.github/actions/rust-build-release@1479e2ffbbf1053bb0205357dfe965299b7493ed
uses: leynos/shared-actions/.github/actions/rust-build-release@368d13d7884a484f4763308a5af3f487c607d171
with:
target: ${{ matrix.target }}
bin-name: ${{ matrix.bin }}
version: ${{ env.RELEASE_VERSION }}
formats: deb,rpm
- name: Package ${{ matrix.bin }}
uses: leynos/shared-actions/.github/actions/linux-packages@1479e2ffbbf1053bb0205357dfe965299b7493ed
uses: leynos/shared-actions/.github/actions/linux-packages@368d13d7884a484f4763308a5af3f487c607d171
with:
bin-name: ${{ matrix.bin }}
package-name: ${{ matrix.bin }}
Expand Down
Loading