This repository was archived by the owner on Sep 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
👷 Move from TravisCI to Github Actions
- Loading branch information
1 parent
9856e4d
commit 022a57a
Showing
2 changed files
with
21 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: requestz | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Setup Zig | ||
uses: goto-bus-stop/setup-zig@v1.3.0 | ||
with: | ||
version: master | ||
- name: Setup Gyro | ||
uses: mattnite/setup-gyro@v1 | ||
- run: gyro build test | ||
- run: zig fmt --check src build.zig |
This file was deleted.
Oops, something went wrong.