Skip to content

Commit

Permalink
Merge pull request #4 from kfzteile24/DEV-13135_github_actions
Browse files Browse the repository at this point in the history
Github actions
  • Loading branch information
swilam authored Jul 9, 2020
2 parents 90c0e73 + fc18138 commit 63e9404
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Run tests

on: [push]

jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run Unit Tests
run: |
echo ${{ secrets.GH_TOKEN }}
mkdir -pv /home/${USER}/.composer
echo "{\"github-oauth\": {\"github.com\": \"${{ secrets.GH_TOKEN }}\"}}" > /home/${USER}/.composer/auth.json
composer install --no-scripts --ignore-platform-reqs # ignore-reqs because we run on bare ubuntu and we do not care about vendor dependencies here
vendor/bin/phpunit
14 changes: 0 additions & 14 deletions circle.yml

This file was deleted.

0 comments on commit 63e9404

Please sign in to comment.