Skip to content

Commit

Permalink
Fix: github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
viest committed Aug 29, 2021
1 parent 7fa322c commit 79633c5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,18 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
php-versions: ['8.0']
include:
- operating-system: 'ubuntu-18.04'
php-versions: '7.0'
- operating-system: 'ubuntu-18.04'
php-versions: '7.1'
- operating-system: 'ubuntu-18.04'
php-versions: '7.2'
- operating-system: 'ubuntu-18.04'
php-versions: '7.3'
- operating-system: 'ubuntu-18.04'
php-versions: '7.4'
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
steps:
- name: Checkout
Expand All @@ -21,6 +32,7 @@ jobs:

- name: Setup Dependencies
run: |
sudo apt-get --fix-broken install
sudo apt-get update
sudo apt-get install zlib1g-dev valgrind -y
Expand Down
1 change: 1 addition & 0 deletions config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ if test "$PHP_XLSWRITER" != "no"; then
library/libxlsxwriter/src/drawing.c \
library/libxlsxwriter/src/format.c \
library/libxlsxwriter/src/hash_table.c \
library/libxlsxwriter/src/metadata.c \
library/libxlsxwriter/src/packager.c \
library/libxlsxwriter/src/relationships.c \
library/libxlsxwriter/src/shared_strings.c \
Expand Down
1 change: 1 addition & 0 deletions config.w32
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ if (PHP_XLSWRITER != "no") {
drawing.c \
format.c \
hash_table.c \
metadata.c \
packager.c \
relationships.c \
shared_strings.c \
Expand Down

0 comments on commit 79633c5

Please sign in to comment.