mirror of
https://github.com/roles-ansible/ansible_role_restic/
synced 2024-11-15 16:10:19 +01:00
3ca9704c70
Bumps [github/super-linter](https://github.com/github/super-linter) from 4.6.1 to 4.6.2. - [Release notes](https://github.com/github/super-linter/releases) - [Commits](https://github.com/github/super-linter/compare/v4.6.1...v4.6.2) --- updated-dependencies: - dependency-name: github/super-linter dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
58 lines
1.3 KiB
YAML
58 lines
1.3 KiB
YAML
---
|
|
name: 🎭 Tests
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
push:
|
|
paths:
|
|
- defaults/**
|
|
- handlers/**
|
|
- meta/**
|
|
- molecule/**
|
|
- tasks/**
|
|
- templates/**
|
|
- vars/**
|
|
- .github/**
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
lint:
|
|
name: 📝 Linting
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v2.3.4
|
|
with:
|
|
# Full git history is needed to get a proper list of changed files within `super-linter`
|
|
fetch-depth: 0
|
|
- name: Lint Code Base
|
|
uses: github/super-linter@v4.6.2
|
|
env:
|
|
VALIDATE_ALL_CODEBASE: false
|
|
VALIDATE_ANSIBLE: true
|
|
ANSIBLE_DIRECTORY: './'
|
|
DEFAULT_BRANCH: main
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
molecule:
|
|
name: 🧪 Molecule test
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
distro:
|
|
- centos7
|
|
- centos6
|
|
- ubuntu1804
|
|
- debian9
|
|
- debian10
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2.3.4
|
|
with:
|
|
path: "${{ github.repository }}"
|
|
- name: molecule
|
|
uses: robertdebock/molecule-action@2.6.16
|
|
env:
|
|
MOLECULE_DISTRO: ${{ matrix.distro }}
|
|
with:
|
|
image: ubuntu
|