Skip to content

Commit

Permalink
🎨 prefix ci name with emojis
Browse files Browse the repository at this point in the history
  • Loading branch information
Roms1383 committed Mar 28, 2023
1 parent 8ea3064 commit 56d73ea
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,31 +12,31 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: checkout repository
- name: ⬇️ checkout repository
uses: actions/checkout@v3
- name: setup cargo toolchain
- name: 🛠 setup cargo toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: cache Rust dependencies
- name: ♻️ cache Rust dependencies
uses: Swatinem/rust-cache@v2
- name: run cargo check
- name: run cargo check
uses: actions-rs/cargo@v1
with:
command: check
lint:
needs: check
runs-on: ubuntu-latest
steps:
- name: checkout repository
- name: ⬇️ checkout repository
uses: actions/checkout@v3
- name: setup cargo toolchain
- name: 🛠 setup cargo toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: cache Rust dependencies
- name: ♻️ cache Rust dependencies
uses: Swatinem/rust-cache@v2
- name: run cargo clippy
- name: 🔍 run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- name: checkout repository
- name: ⬇️ checkout repository
uses: actions/checkout@v3
- name: setup cargo toolchain
- name: 🛠 setup cargo toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: install gitmoji-changelog
- name: 🛠 install gitmoji-changelog
run: cargo install [email protected]
- name: cache Rust dependencies
- name: ♻️ cache Rust dependencies
uses: Swatinem/rust-cache@v2
- name: generate CHANGELOG.md
- name: 📋 generate CHANGELOG.md
run: gitmoji-changelog . -o CHANGELOG.md
- name: create GitHub release
- name: 🔖 create GitHub release
uses: softprops/action-gh-release@v1
with:
body_path: CHANGELOG.md
- name: publish to crates.io
- name: 🦀 publish to crates.io
uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 comments on commit 56d73ea

Please sign in to comment.