Skip to content

remove weird redundancy in utils/funcs.zig #102

remove weird redundancy in utils/funcs.zig

remove weird redundancy in utils/funcs.zig #102

Workflow file for this run

name: CI
on:
pull_request:
branches: [master]
jobs:
test:
strategy:
fail-fast: false
matrix:
host:
[
ubuntu-latest,
macos-latest,
windows-latest,
]
runs-on: ${{matrix.host}}
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Setup Zig
uses: mlugg/setup-zig@v1
with:
mirror: "http://mirrors.nektro.net/s3cgi"
version: "0.13.0"
- run: zig version
- run: zig env
- run: zig build -j1
- run: echo "$PWD/zig-out/bin" >> $GITHUB_PATH
- run: zigmod version
- run: zigmod sum
- run: zigmod zpm add apple_pie
- run: zigmod zpm tags
- run: zigmod aq add 1/vrischmann/sqlite
- run: ./test_repo.sh https://github.com/nektro/zigmod-test-basic
- run: ./test_repo.sh https://github.com/nektro/zigmod-test-git-dep
- run: ./test_repo.sh https://github.com/nektro/zigmod-test-hg-dep
- run: ./test_repo.sh https://github.com/nektro/zigmod-test-http-dep
- run: ./test_repo.sh https://github.com/nektro/zigmod-test-systemlib-dep
- run: ./test_repo.sh https://github.com/nektro/zigmod-test-local-dep
- run: ./test_repo.sh https://github.com/nektro/zigmod-test-c-code