Skip to content

Commit

Permalink
Add Github Actions (#44)
Browse files Browse the repository at this point in the history
* Add Github Actions
  • Loading branch information
llupa authored Dec 2, 2022
1 parent f414124 commit eff5c29
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 9 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/test-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Naith

on:
push:
pull_request:

defaults:
run:
shell: bash

permissions:
contents: read

jobs:

tests:
name: Tests

strategy:
matrix:
tag: ['7.2', '7.3', '7.4']
fail-fast: false

runs-on: ubuntu-latest
container:
image: exozet/php-fpm:${{ matrix.tag }}
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Run tests
run: |
make install-dependencies
make test
cat junit.xml
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,8 @@ element, you can do this:

## Changelog

- 3.0.1 (2022/12/02)
- dropped Travis CI for GitHub Actions
- 3.0.0 (2020/10/22)
- moved `dracoblue/naith` as a dev dependency
- dropped `phpoffice/phpexcel` for `phpoffice/phpspreadsheet` instead
Expand Down

0 comments on commit eff5c29

Please sign in to comment.