Skip to content

Commit

Permalink
Merge pull request #53 from ChrisTitusTech/unit-tests
Browse files Browse the repository at this point in the history
fix unit tests
  • Loading branch information
ChrisTitusTech authored Jul 19, 2024
2 parents 51e5721 + 55e9bc4 commit 9403f30
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 15 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/linutil.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: LinUtil Release

on:
push:
branches: [ "main" ]

permissions:
contents: write
packages: write

env:
CARGO_TERM_COLOR: always

jobs:
linutil_build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Cache Cargo registry
uses: actions/cache@v4
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-registry-
- name: Cache Cargo index
uses: actions/cache@v4
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-index-
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build
run: cargo build --target-dir=build --release --verbose
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Commit Linutil
file_pattern: 'build/release/linutil'
if: success()
18 changes: 3 additions & 15 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
name: Rust
name: Rust Check

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: write
packages: write

env:
CARGO_TERM_COLOR: always

jobs:
build_and_test:
cargo_check:
runs-on: ubuntu-latest

steps:
Expand All @@ -36,10 +30,4 @@ jobs:
with:
toolchain: stable
- name: Build
run: cargo build --target-dir=build --release --verbose
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Commit Linutil
file_pattern: 'build/release/linutil'
if: success()

run: cargo check

0 comments on commit 9403f30

Please sign in to comment.