authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-05-29 05:29:42 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-05-29 05:29:42 -07:00
loga4d18db64e8aa530d6e37d602fa69b95dc1f054e
treec9c32f99e235e01cd6b5009e9900cfc88b3c6ae0
parente84a6a770a918fbc4aa60e1431c044dbb1d921bc
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

ci: remove pull_request action


1 files changed, 0 insertions(+), 48 deletions(-)

.github/workflows/nightly.yml deleted-48
......@@ -1,48 +0,0 @@
1name: CI
2
3on:
4 pull_request:
5 branches: [master]
6
7jobs:
8 test:
9 strategy:
10 fail-fast: false
11 matrix:
12 host:
13 [
14 ubuntu-latest,
15 macos-latest,
16 windows-latest,
17 ]
18
19 runs-on: ${{matrix.host}}
20
21 steps:
22 - uses: actions/checkout@v2
23 with:
24 submodules: "recursive"
25
26 - name: Setup Zig
27 uses: mlugg/setup-zig@v1
28 with:
29 mirror: "http://mirrors.nektro.net/s3cgi"
30 version: "0.14.0"
31
32 - run: zig version
33 - run: zig env
34 - run: zig build -j1
35 - run: echo "$PWD/zig-out/bin" >> $GITHUB_PATH
36
37 - run: zigmod version
38 - run: zigmod sum
39 - run: zigmod zpm add apple_pie
40 - run: zigmod zpm tags
41
42 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-basic
43 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-git-dep
44 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-hg-dep
45 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-http-dep
46 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-systemlib-dep
47 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-local-dep
48 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-c-code