mirror of
https://github.com/ronivay/XenOrchestraInstallerUpdater.git
synced 2026-09-11 04:12:51 -05:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
318 B
YAML
17 lines
318 B
YAML
name: xo-install test
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'xo-install.sh'
|
|
- 'sample.xo-install.cfg'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
Test-Install:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: xo-install run
|
|
run: sudo ./xo-install.sh --install
|
|
shell: bash
|