Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
igankevich committed Apr 21, 2024
1 parent 7515861 commit b76a502
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: DNS
run: echo 'nameserver 9.9.9.9' > /etc/resolv.conf && chmod +x /usr/local/bin/cijail
run: ./ci/dns.sh
- name: Lint
run: cijail ./ci/lint.sh
- name: Test
Expand Down
4 changes: 4 additions & 0 deletions ci/dns.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
set -ex
printf 'nameserver 9.9.9.9\n' >/etc/resolv.conf
chmod +x /usr/local/bin/cijail

0 comments on commit b76a502

Please sign in to comment.