GitHub/Gitea action to setup zig, utilizing cache. Supports regular and mach nominated versions
Go to file
Renée Kooi e834313fcd
Download tarball from zig download index (#2)
* Download tarball from zig download index

* try this

* Remove promisify

* Revert "try this"

This reverts commit e6ecfb58ed2819755bc79af1349e4fd0db59e3b5.
2019-10-07 10:17:11 +02:00
.github/workflows Add standard-action 2019-10-05 15:19:06 +02:00
node_modules Download tarball from zig download index (#2) 2019-10-07 10:17:11 +02:00
test test it 2019-10-05 12:54:14 +02: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 Add icon/color 2019-10-05 15:32:56 +02:00
CHANGELOG.md 1.0.1 2019-10-05 15:34:31 +02:00
CODE_OF_CONDUCT.md init 2019-10-05 12:44:47 +02:00
index.js Download tarball from zig download index (#2) 2019-10-07 10:17:11 +02:00
LICENSE.md init 2019-10-05 12:44:47 +02:00
package.json Download tarball from zig download index (#2) 2019-10-07 10:17:11 +02:00
README.md Add example lint job 2019-10-05 13:30:05 +02: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@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