Skip to content

Commit

Permalink
up-to-date
Browse files Browse the repository at this point in the history
  • Loading branch information
splurf committed Sep 11, 2024
1 parent 447ec55 commit 4478711
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 70 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/rust-linux.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/rust-macos.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/rust-windows.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Rust

on:
push:
branches:
- master
pull_request:
branches:
- master

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple-expand-tilde"
version = "0.4.0"
version = "0.4.2"
edition = "2021"
license = "MIT"
repository = "https://github.com/splurf/simple-expand-tilde"
Expand All @@ -11,7 +11,7 @@ categories = ["accessibility"]
exclude = [".github/", ".gitignore", "LICENSE", "README.md", "tests/"]

[dependencies]
simple-home-dir = "0.4.0"
simple-home-dir = "0.4.2"

[profile.release]
lto = true
Expand Down

0 comments on commit 4478711

Please sign in to comment.