Skip to content

feat(cargo-generate): add padding to git remote printout #76

feat(cargo-generate): add padding to git remote printout

feat(cargo-generate): add padding to git remote printout #76

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lychee_links:
name: Broken URL Checking
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Run lychee
uses: lycheeverse/[email protected]
with:
fail: true
spelling:
name: Spell Checking
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: typos
uses: crate-ci/typos@master
conventional_commits:
name: Conventional Commit Checking
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
with:
fetch-depth: 0
- name: cocogitto check
uses: oknozor/cocogitto-action@v3
expand_template:
name: Expand Template
runs-on: ubuntu-latest
# FIXME: fix expand template step error
if: false
env:
PROJECT_NAME: basic-tests
CARGO_GENERATE_VALUE_CI: true
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Expand template
uses: cargo-generate/cargo-generate-action@latest
with:
name: ${{ env.PROJECT_NAME }}
arguments: "--values-file ./cargo_generate/values.toml"
- name: Build setup
uses: ./.github/actions/build_setup
- run: |
mv $PROJECT_NAME ${{ runner.temp }}/
cd ${{ runner.temp }}/$PROJECT_NAME
# IMPROVEMENT: add more tests / CI steps
cargo check