diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml deleted file mode 100644 index b9f5945..0000000 --- a/.github/workflows/integration.yml +++ /dev/null @@ -1,29 +0,0 @@ ---- -name: Integration - -# Controls when the action will run. -on: - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -jobs: - integration: - name: Integration - runs-on: ubuntu-20.04 - steps: - - name: Check out the codebase - uses: actions/checkout@v2 - - - name: Set up Python 3 - uses: actions/setup-python@v2 - with: - python-version: '3.x' - - - name: Install Ansible - run: pip3 install ansible - - - name: Install roles - run: ansible-galaxy install -r requirements.yml - - - name: Run playbook - run: ansible-playbook -i tests/inventories/integration_testing/inventory provisioning.yml -b diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2d70636..4c71b12 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,7 +4,7 @@ name: Run linters on: push: branches: - - master + - main pull_request: # Allows you to run this workflow manually from the Actions tab diff --git a/.vscode/extensions.json b/.vscode/extensions.json index ffce10d..fda5ad5 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,6 +1,5 @@ { - "recommendations": [ - "bungcip.better-toml", - "editorconfig.editorconfig" - ] + "recommendations": [ + "editorconfig.editorconfig" + ] } diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 492727b..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "files.associations": { - ".yamllint": "yaml", - ".ansible-lint": "yaml", - // "**/components/*/*.js": "javascriptreact", - // "**/config/routes.js": "javascriptreact" - }, - "workbench.colorCustomizations": { - "tree.indentGuidesStroke": "#c4c1c1", - "activityBar.background": "#2D2F24", - "titleBar.activeBackground": "#3F4132", - "titleBar.activeForeground": "#F9FAF8" - } -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 7fb157f..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - // See https://go.microsoft.com/fwlink/?LinkId=733558 - // for the documentation about the tasks.json format - "version": "2.0.0", - "tasks": [ - { - "label": "Run Playbook", - "type": "shell", - "command": "ansible-playbook -i inventory provisioning.yml -b -K", - "group": { - "kind": "build", - "isDefault": true - } - }, - { - "label": "Run Playbook Syntax Check", - "type": "shell", - "command": "ansible-playbook -i inventory provisioning.yml --syntax-check", - "group": { - "kind": "test", - "isDefault": true - } - }, - { - "label": "Run ansible-lint", - "type": "shell", - "command": "ansible-lint provisioning.yml", - "group": "test" - } - // { - // "label": "Serve docs locally (mkdocs serve)", - // "type": "shell", - // "command": "mkdocs serve", - // "group": "test" - // }, - // { - // "label": "Deploy docs to GitHub (mkdocs gh-deploy)", - // "type": "shell", - // "command": "mkdocs gh-deploy", - // "group": "build" - // } - ] -}