This file contains hidden or 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
| def versionMajor = 1 | |
| def versionMinor = 1 | |
| def versionPatch = 3 | |
| def versionBuild = 0 | |
| buildscript { | |
| repositories { | |
| mavenCentral() | |
| // maven { url 'https://maven.fabric.io/public' } |
This file contains hidden or 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
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - my-other-branch # this references the branch on which a push should trigger the action | |
| jobs: | |
| build: |
This file contains hidden or 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
| # action.yml | |
| name: 'Hello World' | |
| description: 'Run tests' | |
| runs: | |
| using: 'docker' | |
| # this corresponds to the location of the dockerfile, relative to your action's folder (automatic-tests here) | |
| image: '../../../Dockerfile' |
This file contains hidden or 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
| name: CI | |
| # this will fire the action on any push to the master branch, you can modify the branch or adapt it to be fired on other events (eg. pull requests) | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: |