Add solution for yet another base conversion #268
This file contains 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: Coverage | |
on: push | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: Set up php | |
id: composer_config | |
uses: php-actions/composer@v6 | |
with: | |
php_extensions: xdebug | |
args: -d src/php | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Generate cov report | |
run: make cov | |
- name: Upload to codecov | |
uses: codecov/codecov-action@v2 |