Skip to content

Fix renaming logic, split extensions for nicer rename #48

Fix renaming logic, split extensions for nicer rename

Fix renaming logic, split extensions for nicer rename #48

Workflow file for this run

name: Check
on:
push:
branches:
- main
- workflow_check
pull_request:
branches:
- main
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install toolchain
run: rustup show
shell: bash
- name: Run cargo check
run: cargo check --all --all-targets
shell: bash
- name: Run cargo fmt
run: cargo fmt --all -- --check
shell: bash
- name: Run cargo test
run: cargo test --all --all-targets --no-fail-fast
shell: bash
- name: Run cargo clippy
run: cargo clippy -- -Dwarnings
shell: bash