Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v6
Comment thread
EugOT marked this conversation as resolved.
- uses: mlugg/setup-zig@v2
with:
version: 0.15.2
version: 0.16.0
- run: zig build test

build:
Expand All @@ -25,5 +25,5 @@ jobs:
- uses: actions/checkout@v6
Comment thread
EugOT marked this conversation as resolved.
- uses: mlugg/setup-zig@v2
with:
version: 0.15.2
version: 0.16.0
- run: zig build -Dtarget=${{ matrix.target }}
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
- target: x86_64-windows
artifact: ziglint-x86_64-windows
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup Zig
uses: mlugg/setup-zig@v2
with:
version: 0.15.2
version: 0.16.0

- name: Build
run: zig build -Doptimize=ReleaseFast -Dtarget=${{ matrix.target }}
Expand All @@ -54,7 +54,7 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Download all artifacts
uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
.name = .ziglint,
.version = "0.5.2",
.fingerprint = 0x4b7deecc2ff046b7,
.minimum_zig_version = "0.15.2",
.minimum_zig_version = "0.16.0",
.paths = .{
"build.zig",
"build.zig.zon",
Expand Down
52 changes: 9 additions & 43 deletions flake.lock

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

5 changes: 2 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,8 @@
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
zig_0_15
zls_0_15
zlint
zig_0_16
zls_0_16
zigdoc
];

Expand Down
Loading