diff options
author | RaindropsSys <contact@minteck.org> | 2023-03-21 16:21:21 +0100 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-03-21 16:21:21 +0100 |
commit | 475c5731bf3362b6ac8d2dc5d5b43e4b4a6117bd (patch) | |
tree | 2cff46debf9c1e13892e7babff9deb6874ecb4b2 /includes/composer/vendor/om/icalparser/.github | |
parent | 7ccc2de87f9e25c715dc09b9aba4eb5c66f80424 (diff) | |
download | pluralconnect-475c5731bf3362b6ac8d2dc5d5b43e4b4a6117bd.tar.gz pluralconnect-475c5731bf3362b6ac8d2dc5d5b43e4b4a6117bd.tar.bz2 pluralconnect-475c5731bf3362b6ac8d2dc5d5b43e4b4a6117bd.zip |
Updated 26 files and added 1074 files (automated)
Diffstat (limited to 'includes/composer/vendor/om/icalparser/.github')
-rw-r--r-- | includes/composer/vendor/om/icalparser/.github/workflows/php.yml | 40 | ||||
-rw-r--r-- | includes/composer/vendor/om/icalparser/.github/workflows/typo.yml | 14 |
2 files changed, 54 insertions, 0 deletions
diff --git a/includes/composer/vendor/om/icalparser/.github/workflows/php.yml b/includes/composer/vendor/om/icalparser/.github/workflows/php.yml new file mode 100644 index 0000000..e502b81 --- /dev/null +++ b/includes/composer/vendor/om/icalparser/.github/workflows/php.yml @@ -0,0 +1,40 @@ +name: PHP Tests + +on: [ push, pull_request ] + +jobs: + + build: + strategy: + matrix: + operating-system: [ ubuntu-latest ] + php-versions: [ '8.0', '8.1', '8.2' ] + experimental: [ false ] + include: + - php-versions: '8.3' + operating-system: ubuntu-latest + experimental: true + fail-fast: false + runs-on: ${{ matrix.operating-system }} + continue-on-error: ${{ matrix.experimental }} + steps: + - uses: actions/checkout@v3 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-versions }} + + - name: Validate composer.json and composer.lock + run: composer validate + + - name: Install dependencies + if: "${{ matrix.experimental == false }}" + run: composer install --prefer-dist --no-progress --no-suggest + + - name: Install dependencies, ignore php requirements + if: "${{ matrix.experimental == true }}" + run: composer install --prefer-dist --no-progress --no-suggest --ignore-platform-reqs + + - name: Run test suite + run: composer run-script test diff --git a/includes/composer/vendor/om/icalparser/.github/workflows/typo.yml b/includes/composer/vendor/om/icalparser/.github/workflows/typo.yml new file mode 100644 index 0000000..97d55a2 --- /dev/null +++ b/includes/composer/vendor/om/icalparser/.github/workflows/typo.yml @@ -0,0 +1,14 @@ +name: Typo Tests +on: [ pull_request ] + +jobs: + misspell: + name: Check for typos / misspells + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Run misspell with reviewdog + uses: reviewdog/action-misspell@v1 + with: + github_token: ${{ secrets.github_token }} |