Skip to content

Commit

Permalink
Change CI tool TravisCI -> Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeySeroshtan committed Apr 28, 2024
1 parent b786102 commit 8cebbf4
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 12 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build and Test
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
php-version: ["8.2", "8.3"]
include:
- os: ubuntu-latest
phpts: "nts"
- os: macos-13
phpts: "nts"
- os: windows-latest
phpts: "ts"
steps:
- uses: actions/checkout@v4
- name: Install PHP ${{ matrix.php-version }}
id: setup-php
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer:v2
env:
update: true
phpts: ${{ matrix.phpts }}
- name: Check PHP Version
run: php -v
- name: Build and Install
run: composer install
- name: Run Tests
if: runner.os != 'Windows'
run: |
echo ${VIRGIL_PURE_KIT_ENV} > .env
vendor/bin/phpunit --configuration phpunit.xml
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

0 comments on commit 8cebbf4

Please sign in to comment.