Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Add an updates subcommand to kbcheck #65

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
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
29 changes: 29 additions & 0 deletions .github/workflows/tools-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: tools-tests

on:
push:
branches:
- main
pull_request:
jobs:
rust-tests:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: "Cache"
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
./target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: "Rust toolchain"
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: "Test"
run: cargo test
Loading