forked from Winetricks/winetricks
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jacob Hrbek
committed
Nov 14, 2019
1 parent
d83d426
commit b804554
Showing
3 changed files
with
45 additions
and
1 deletion.
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,24 @@ | ||
name: Linux | ||
|
||
# This workflow is triggered on pushes to the repository. | ||
on: [push] | ||
|
||
jobs: | ||
build: | ||
name: linux-tests | ||
# TODO: GIVE ME BETTER DISTRO! | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# This step uses GitHub's hello-world-javascript-action: https://github.com/actions/hello-world-javascript-action | ||
- name: Hello world | ||
uses: actions/hello-world-javascript-action@v1 | ||
with: | ||
who-to-greet: 'Mona the Octocat' | ||
id: hello | ||
# This step prints an output (time) from the previous step's action. | ||
- name: Echo the greeting's time | ||
run: echo 'The time was ${{ steps.hello.outputs.time }}.' | ||
# Run Shellcheck | ||
- name: shellcheck | ||
uses: ludeeus/action-shellcheck@0.0.1 |
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,15 @@ | ||
name: MacOS | ||
|
||
# This workflow is triggered on pushes to the repository. | ||
on: [push] | ||
|
||
jobs: | ||
build: | ||
name: macosx-tests | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- name: Try installing Shellcheck | ||
run: | | ||
brew install shellcheck | ||
brew install docker |
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