Restire possibility to configure 'table groups' + added container for building #105
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: Testing MageDBM2 | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest] | |
php-version: ['7.4', '8.0'] | |
runs-on: ${{ matrix.operating-system }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: mbstring, simplexml, dom | |
- name: Run Tests | |
run: make test |