Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.3 to 4.1.0. - [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/v3.5.3...v4.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
14 lines
222 B
YAML
14 lines
222 B
YAML
name: Dotfiles CI
|
|
on: [push]
|
|
|
|
jobs:
|
|
tests:
|
|
name: Run test suite
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.1.0
|
|
|
|
# Run the tests
|
|
- name: 'Run tests'
|
|
run: ./script/test
|