Skip to content

Commit

Permalink
Merge pull request #19 from josemmo/develop
Browse files Browse the repository at this point in the history
v0.2.0
  • Loading branch information
josemmo committed Apr 25, 2022
2 parents 9704bb1 + 6d3b140 commit 967d57e
Show file tree
Hide file tree
Showing 12 changed files with 237 additions and 2,012 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['7.1', '7.2', '7.3', '7.4']
php-version: ['7.1', '7.2', '7.3', '7.4', '8.0']
include:
- php-version: '8.0'
deploy: ${{ github.ref == 'refs/heads/master' }}
- php-version: '8.1'
deploy: ${{ github.ref == 'refs/heads/master' }}
- php-version: '8.2'
experimental: true
steps:
# Download code from repository
Expand All @@ -31,7 +31,7 @@ jobs:

# Setup Composer
- name: Setup Composer
run: composer validate --strict && composer install --ignore-platform-reqs
run: composer validate --strict && composer install

# Run static analyzer
- name: Run static analyzer
Expand All @@ -52,7 +52,7 @@ jobs:
# Deploy documentation
- name: Deploy documentation
if: ${{ success() && matrix.deploy || false }}
uses: JamesIves/github-pages-deploy-action@4.1.4
uses: JamesIves/github-pages-deploy-action@v4.2.5
with:
branch: gh-pages
folder: site
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/vendor
/vendor
composer.lock
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
},
"require": {
"php": ">=7.1",
"josemmo/uxml": "^0.1.2"
"josemmo/uxml": "^0.1.3"
},
"require-dev": {
"ext-openssl": "*",
"phan/phan": "^5.0",
"phpdocumentor/reflection": "^4.0",
"symfony/phpunit-bridge": "^5.3"
"phan/phan": "*",
"phpdocumentor/reflection": "^3.0|^5.1",
"symfony/phpunit-bridge": "*"
}
}
Loading

0 comments on commit 967d57e

Please sign in to comment.