Compare commits

...

4 Commits

Author SHA1 Message Date
5ac439ef9e tweak
Some checks failed
CI / Typos (pull_request) Successful in 11s
CI / Build and test (pull_request) Successful in 1m13s
CI / Check version (pull_request) Failing after 5s
CI / Clippy (pull_request) Successful in 3m48s
2025-05-14 19:14:13 -07:00
2d5497affe version 2025-05-14 19:14:13 -07:00
1bd43b1f20 rust 2025-05-14 19:14:13 -07:00
bdf0511390 Fix build (#4)
Some checks failed
CI / Clippy (push) Failing after 8s
CI / Typos (push) Successful in 10s
CI / Check version (push) Has been skipped
CI / Build and test (push) Failing after 8s
Release / release (push) Failing after 36s
Reviewed-on: #4
2025-05-04 10:52:08 -07:00
5 changed files with 14 additions and 5 deletions

View File

@ -56,6 +56,8 @@ jobs:
check-version:
name: Check version
runs-on: ubuntu-latest
# Skip this job on push to main
if: github.event_name != 'push' || github.ref != 'refs/heads/main'
steps:
- uses: actions/checkout@v4
with:

View File

@ -14,6 +14,11 @@ jobs:
with:
fetch-depth: 0
- name: setup go
uses: https://github.com/actions/setup-go@v4
with:
go-version: ">=1.20.1"
- uses: https://gitea.com/actions/release-action@main
with:
api_key: "${{secrets.RELEASE_TOKEN}}"

2
Cargo.lock generated
View File

@ -306,7 +306,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "pick"
version = "0.0.4"
version = "0.0.5"
dependencies = [
"anstyle",
"anyhow",

View File

@ -1,7 +1,7 @@
[package]
name = "pick"
version = "0.0.4"
edition = "2024"
version = "0.0.5"
edition = "2021"
#
# MARK: lints

2
toolchain.toml Normal file
View File

@ -0,0 +1,2 @@
[toolchain]
channel = "1.86.0"