GitHub/Gitea action to setup zig, utilizing cache. Supports regular and mach nominated versions
Go to file
2020-10-22 16:03:35 +00:00
.github/workflows Auto-rebuild dist files using Github Actions (#8) 2020-03-07 16:05:55 +01:00
dist Rebuild 2020-10-22 16:03:35 +00:00
test Actually support downloading Zig version: master (#5) 2020-02-01 19:01:44 +01:00
.gitattributes add gitattributes 2019-10-05 13:09:58 +02:00
.gitignore check in node_modules 2019-10-05 13:02:15 +02:00
.npmrc init 2019-10-05 12:44:47 +02:00
action.yml Fix branding. 2020-03-07 16:08:23 +01:00
CHANGELOG.md 1.2.5 2020-10-11 18:21:10 +02:00
CODE_OF_CONDUCT.md init 2019-10-05 12:44:47 +02:00
index.js Actually support downloading Zig version: master (#5) 2020-02-01 19:01:44 +01:00
LICENSE.md init 2019-10-05 12:44:47 +02:00
package.json Bump standard from 14.3.4 to 15.0.0 (#12) 2020-10-22 18:03:04 +02:00
README.md doc: recommend using @v1 instead of pinning to a version 2020-02-17 15:03:25 +01:00

setup-zig

Use the zig compiler in your Github Action

Usage - License: Apache-2.0

Usage

In a Github Actions workflow file, do something like:

jobs:
  test:
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
    runs-on: ${{matrix.os}}
    steps:
      - uses: actions/checkout@v2
      - uses: goto-bus-stop/setup-zig@v1
      - run: zig build test
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: goto-bus-stop/setup-zig@v1
      - run: zig fmt --check src/*.zig

Optionally set a Zig version:

- uses: goto-bus-stop/setup-zig@v1
  with:
    version: 0.4.0 # The default is 0.5.0

To use the nightly builds, set:

- uses: goto-bus-stop/setup-zig@v1
  with:
    version: master

If you are running Zig on Windows machines, you need to make sure that your .zig files use \n line endings and not \r\n. The actions/checkout action auto-converts line endings to \r\n, so add a .gitattributes file:

*.zig text eol=lf

License

Apache-2.0