Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 5 additions & 23 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,29 +68,6 @@ jobs:
- name: Run test
run: ${{ matrix.task }}

check-typos:
runs-on: ubuntu-latest
container:
image: quay.io/fedora/fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT
steps:
- name: Install dependencies
run: >
dnf install -y
clang
glibc-static
make
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: cargo
- uses: baptiste0928/cargo-install@v3
with:
crate: typos-cli
- name: Run test
run: make -f Makefile check-typos

test-runs:
strategy:
matrix:
Expand Down Expand Up @@ -255,3 +232,8 @@ jobs:
- name: Run coverage report
run: make -f Makefile coverage-report
working-directory: stratis-cli

general_checks:
uses: stratis-storage/github-actions/.github/workflows/reusable_general.yml@master
with:
fedora-container-image-number: 43 # CURRENT DEVELOPMENT ENVIRONMENT
50 changes: 0 additions & 50 deletions .github/workflows/support.yml

This file was deleted.

4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ fmt-ci:
check-typos:
typos

.PHONY: fix-typos
fix-typos:
typos -w

PYREVERSE_OPTS = --output=pdf
.PHONY: view
view:
Expand Down
Loading