Bumps [actions/checkout](https://github.com/actions/checkout) from 1 to 4. - [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/v1...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
15 lines
296 B
YAML
15 lines
296 B
YAML
name: xo-install test
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'xo-install.sh'
|
|
- 'sample.xo-install.cfg'
|
|
jobs:
|
|
Test-Install:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: xo-install run
|
|
run: sudo ./xo-install.sh --install
|
|
shell: bash
|