diff options
author | Gabriel <desouza@oculavis.de> | 2019-08-23 10:32:16 -0300 |
---|---|---|
committer | Gabriel <desouza@oculavis.de> | 2019-08-23 10:32:16 -0300 |
commit | 25a14696757491e3173160fff8fd1e9b0c503c61 (patch) | |
tree | ed5443f75e41b3a452da9f5b7779e82d263fc697 /.github/workflows/push.yml | |
parent | dc5fe1f70e4e6c0dbdbd551aa7e72df46e7e51d7 (diff) | |
download | genpass-25a14696757491e3173160fff8fd1e9b0c503c61.tar.gz genpass-25a14696757491e3173160fff8fd1e9b0c503c61.tar.bz2 genpass-25a14696757491e3173160fff8fd1e9b0c503c61.zip |
Migrate github actions
Diffstat (limited to '.github/workflows/push.yml')
-rw-r--r-- | .github/workflows/push.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml new file mode 100644 index 0000000..6381eb5 --- /dev/null +++ b/.github/workflows/push.yml @@ -0,0 +1,26 @@ +on: push +name: Build +jobs: + test: + name: Test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Test + uses: ./.github/action + with: + args: test + - name: Coverage + uses: ./.github/action + with: + args: cloverage --junit + - name: Package + uses: ./.github/action + with: + args: package + - name: Deploy to pages + uses: JamesIves/github-pages-deploy-action@master + env: + ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} + BRANCH: gh-pages + FOLDER: public |