Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.1 to 6.0.2. - [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/v6.0.1...v6.0.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
20 lines
408 B
YAML
20 lines
408 B
YAML
name: Dotfiles CI
|
|
on: [push]
|
|
|
|
jobs:
|
|
tests:
|
|
name: Run test suite
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
dockerfile: [Dockerfile, Dockerfile.arch]
|
|
steps:
|
|
- uses: actions/checkout@v6.0.2
|
|
|
|
# Run the tests
|
|
- name: Run tests (${{ matrix.dockerfile }})
|
|
env:
|
|
DOCKERFILE: ${{ matrix.dockerfile }}
|
|
run: ./script/test
|