Skip to content

Commit 151ada2

Browse files
authored
Merge pull request #303 from michaelb/dev
Dev
2 parents dfed7aa + 8ecc39d commit 151ada2

File tree

14 files changed

+412
-284
lines changed

14 files changed

+412
-284
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ max_line_length = 120
2424

2525
# optional crlf/lf/cr/auto, if it is 'auto', in windows it is crlf other platforms are lf
2626
# in neovim the value 'auto' is not a valid option, please use 'unset'
27-
end_of_line = auto
27+
end_of_line = unset
2828

2929
# none/ comma / semicolon / only_kv_colon
3030
table_separator_style = none

.github/workflows/release.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ jobs:
1616
runs-on: ubuntu-20.04
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
20+
with:
21+
persist-credentials: false
22+
- uses: dtolnay/rust-toolchain@stable
2023
- name: build
2124
run: cargo build --target x86_64-unknown-linux-gnu --release --verbose && mv ./target/x86_64-unknown-linux-gnu/release/sniprun .
2225

.github/workflows/rust.yml

+50-40
Original file line numberDiff line numberDiff line change
@@ -8,75 +8,85 @@ on:
88
workflow_dispatch:
99

1010
jobs:
11+
ci-safety:
12+
name: ci-safety
13+
runs-on: ubuntu-20.04
14+
steps:
15+
- uses: actions/checkout@v4
16+
with:
17+
persist-credentials: false
18+
- uses: astral-sh/setup-uv@v4
19+
- name: run zizmor ci analysis tool
20+
run: uvx zizmor --format sarif . > results.sarif
21+
env:
22+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
- name: Upload SARIF file
24+
uses: github/codeql-action/upload-sarif@v3
25+
with:
26+
sarif_file: results.sarif
27+
category: zizmor
28+
1129
build:
1230
name : build-latest-stable
1331
runs-on: ubuntu-20.04
32+
# version used in release process to guarantee old-GLIBC compatibility
33+
1434
steps:
15-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v4
36+
with:
37+
persist-credentials: false
38+
- uses: dtolnay/rust-toolchain@stable
1639
- name: Build
1740
run: cargo build --verbose --release --target x86_64-unknown-linux-gnu
1841

1942
buildmsrv:
2043
name: build-msrv
2144
runs-on: ubuntu-20.04
2245
steps:
23-
- uses: actions/checkout@v2
24-
- run: "rm Cargo.lock"
25-
- name: Install Rust 1.65 toolchain
26-
uses: actions-rs/toolchain@v1
46+
- uses: actions/checkout@v4
2747
with:
28-
toolchain: 1.65
29-
override: true
48+
persist-credentials: false
49+
- uses: dtolnay/[email protected]
3050
- name: build
31-
run: cargo build --release
51+
run: cargo build --release --locked
3252

3353
buildnightly:
3454
name: build-nightly
35-
runs-on: ubuntu-20.04
55+
runs-on: ubuntu-latest
3656
steps:
37-
- uses: actions/checkout@v2
38-
- name: Install nightly toolchain
39-
uses: actions-rs/toolchain@v1
57+
- uses: actions/checkout@v4
4058
with:
41-
toolchain: nightly
42-
override: true
59+
persist-credentials: false
60+
- uses: dtolnay/rust-toolchain@nightly
4361
- name: build
4462
run: cargo build --release --target x86_64-unknown-linux-gnu
4563

4664
unittest:
4765
name: unit & integration tests
4866
runs-on: ubuntu-20.04
4967
steps:
50-
51-
- uses: actions/checkout@v2
52-
53-
- run: './ressources/install_all_compilers_ci.sh'
54-
55-
- uses: oven-sh/setup-bun@v1
56-
57-
- uses: dlang-community/setup-dlang@v1
58-
59-
- uses: erlef/setup-beam@v1
60-
with:
61-
otp-version: "23"
62-
elixir-version: "1.14"
63-
64-
65-
- name: Unit tests
66-
run: cargo test --release --features ignore_in_ci
67-
68-
- name: integration tests
69-
run: cargo test --release --features ignore_in_ci --test integration
70-
71-
72-
68+
- uses: actions/checkout@v4
69+
with:
70+
persist-credentials: false
71+
- uses: dtolnay/rust-toolchain@stable
72+
- run: './ressources/install_all_compilers_ci.sh'
73+
- uses: oven-sh/setup-bun@v1
74+
- uses: dlang-community/setup-dlang@v1
75+
- uses: erlef/setup-beam@v1
76+
with:
77+
otp-version: "23"
78+
elixir-version: "1.14"
79+
- name: Unit tests
80+
run: cargo test --release --features ignore_in_ci
81+
- name: integration tests
82+
run: cargo test --release --features ignore_in_ci --test integration
7383

7484
install:
7585
name: install (download)
7686
runs-on: ubuntu-20.04
7787
steps:
78-
- uses: actions/checkout@v2
88+
- uses: actions/checkout@v4
89+
with:
90+
persist-credentials: false
7991
- name: installation tests
8092
run: ./install.sh
81-
82-

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v1.3.17
2+
- better fallback messages
3+
- Terminal display mode fixes (courtesy of @dbeecham)
4+
- VirtualLine display mode
5+
16
## v1.3.16
27
- Fix nvim-notify timeout and add render style option
38
- Filter ANSI escape code by default

0 commit comments

Comments
 (0)