Skip to content

use a @ziglang compiler in your github actions workflows

License

Notifications You must be signed in to change notification settings

kprotty/setup-zig

 
 

Repository files navigation

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@v1
      - uses: goto-bus-stop/setup-zig@v1.0.0
      - run: zig build test
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - uses: goto-bus-stop/setup-zig@v1.0.0
      - run: zig fmt --check src/*.zig

Optionally set a Zig version:

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

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

About

use a @ziglang compiler in your github actions workflows

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 78.7%
  • Zig 21.3%