1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-12-15 00:23:16 +03:00
git-cliff/.github/workflows/ci.yml
orhun 2bbeb865f0
chore(ci): add workflow
Signed-off-by: orhun <orhunparmaksiz@gmail.com>
2021-05-13 02:53:27 +03:00

107 lines
2.6 KiB
YAML

name: Continuous Integration
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check:
name: Check
runs-on: ubuntu-18.04
steps:
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Checkout
uses: actions/checkout@master
- name: Check
uses: actions-rs/cargo@v1
with:
command: check
args: --locked --verbose
test:
name: Test suite
runs-on: ubuntu-18.04
steps:
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Checkout
uses: actions/checkout@master
- name: Setup cargo-tarpaulin
run: |
curl -s https://api.github.com/repos/xd009642/tarpaulin/releases/latest | \
grep "browser_download_url.*tar.gz" | cut -d : -f 2,3 | tr -d \" | wget -qi -
tar -xzf cargo-tarpaulin-*.tar.gz
mv cargo-tarpaulin ~/.cargo/bin/
- name: Run tests
run: cargo tarpaulin --out Xml --verbose
- name: Upload reports to codecov
uses: codecov/codecov-action@v1
with:
name: code-coverage-report
file: cobertura.xml
flags: unit-tests
fail_ci_if_error: true
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
clippy:
name: Lints
runs-on: ubuntu-18.04
steps:
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: clippy
override: true
- name: Checkout
uses: actions/checkout@master
- name: Check the lints
uses: actions-rs/cargo@v1
with:
command: clippy
args: --verbose -- -D warnings
rustfmt:
name: Formatting
runs-on: ubuntu-18.04
steps:
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: rustfmt
override: true
- name: Checkout
uses: actions/checkout@master
- name: Check the formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check --all --verbose
lychee:
name: Links
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@master
- name: Check the links
uses: lycheeverse/lychee-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}