mirror of
https://github.com/michaelachrisco/ReadOnlyTraitLaravel.git
synced 2024-10-31 21:33:23 -07:00
Remove CircleCI and replace with GH Actions
This commit is contained in:
parent
75a863d226
commit
18b1e0d2c1
2 changed files with 30 additions and 27 deletions
|
@ -1,27 +0,0 @@
|
||||||
version: 2.1
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build_php_version:
|
|
||||||
docker:
|
|
||||||
- image: cimg/php:8.0.20
|
|
||||||
working_directory: ~/ReadOnlyTraitLaravel
|
|
||||||
steps: # a set of executable commands
|
|
||||||
- checkout
|
|
||||||
- run: sudo composer self-update
|
|
||||||
- run: composer install -n --prefer-dist --no-plugins
|
|
||||||
- run: ./vendor/bin/kahlan -reporter=verbose
|
|
||||||
build_latest:
|
|
||||||
docker:
|
|
||||||
- image: circleci/php:latest
|
|
||||||
working_directory: ~/ReadOnlyTraitLaravel
|
|
||||||
steps: # a set of executable commands
|
|
||||||
- checkout
|
|
||||||
- run: sudo composer self-update
|
|
||||||
- run: composer install -n --prefer-dist --no-plugins
|
|
||||||
- run: ./vendor/bin/kahlan -reporter=verbose
|
|
||||||
workflows:
|
|
||||||
version: 2
|
|
||||||
build:
|
|
||||||
jobs:
|
|
||||||
- build_php_version
|
|
||||||
- build_latest
|
|
30
.github/workflows/build_test.yml
vendored
Normal file
30
.github/workflows/build_test.yml
vendored
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
name: michaelachrisco2/ReadOnlyTraitLaravel/build
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
jobs:
|
||||||
|
build_php_version:
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: "~/ReadOnlyTraitLaravel"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: php:8.0.20
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3.3.0
|
||||||
|
- run: sudo composer self-update
|
||||||
|
- run: composer install -n --prefer-dist --no-plugins
|
||||||
|
- run: "./vendor/bin/kahlan -reporter=verbose"
|
||||||
|
build_latest:
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: "~/ReadOnlyTraitLaravel"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: php:latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3.3.0
|
||||||
|
- run: sudo composer self-update
|
||||||
|
- run: composer install -n --prefer-dist --no-plugins
|
||||||
|
- run: "./vendor/bin/kahlan -reporter=verbose"
|
Loading…
Reference in a new issue