Skip to content

Commit

Permalink
Action: Experimenting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Hrbek committed Nov 14, 2019
1 parent d83d426 commit b804554
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .github/workflows/linux-tests.yml
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
15 changes: 15 additions & 0 deletions .github/workflows/macos-tests.yml.disabled
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
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
![kreytricks_header](/files/img/Kreytricks_header.png)

# Kreytricks
[![Build Status](https://travis-ci.org/kreytricks/kreytricks.svg?branch=master)](https://travis-ci.org/kreytricks/Kreytricks) [![License](http://img.shields.io/:license-lgpl-green.svg)](https://tldrlegal.com/license/gnu-lesser-general-public-license-v2.1-(lgpl-2.1))
[![linux-tests-badge](https://github.com/Kreytricks/kreytricks/workflows/Linux/badge.svg)](https://www.google.com))
[![macosx-tests-badge](https://github.com/Kreytricks/kreytricks/workflows/MacOS/badge.svg)](https://www.google.com))

(FIXME: macos tests are invalid)

[![License](http://img.shields.io/:license-lgpl-green.svg)](https://tldrlegal.com/license/gnu-lesser-general-public-license-v2.1-(lgpl-2.1))

Originally contribution-focused winetricks fork, now standalone fork since winetricks doesn't provide required environment for this kind of development.

Expand Down

0 comments on commit b804554

Please sign in to comment.