1
0
зеркало из https://github.com/glebtv/tui-textarea.git synced 2026-09-04 06:45:50 +03:00

chore: refresh GitHub repository setup (#23)

* chore: refresh GitHub repository setup

* chore: align CI with Rust 1.88 MSRV
Этот коммит содержится в:
srothgan
2026-06-30 20:47:43 +02:00
коммит произвёл GitHub
родитель 9c4db800ef
Коммит ebd3af05e1
21 изменённых файлов: 209 добавлений и 46 удалений

11
.github/workflows/coverage.yml поставляемый
Просмотреть файл

@@ -6,20 +6,23 @@ on:
branches:
- main
permissions:
contents: read
jobs:
coverage:
name: cargo llvm-cov + codecov
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@1.88.0
with:
components: llvm-tools-preview
- uses: Swatinem/rust-cache@v2
- uses: Swatinem/rust-cache@v2.9.1
- uses: taiki-e/install-action@cargo-llvm-cov
- run: cargo llvm-cov --workspace --all-targets --lcov --output-path lcov.info
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v7
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
with:
token: ${{ secrets.CODECOV_TOKEN }}