feat: add module to deploy and integrate grafana agent with slurmctld #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2024 Canonical Ltd. | |
# See LICENSE file for licensing details. | |
name: charmed-hpc-terraform tests | |
on: | |
workflow_call: | |
pull_request: | |
jobs: | |
inclusive-naming-check: | |
name: Inclusive naming check | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run tests | |
uses: get-woke/woke-action@v0 | |
with: | |
fail-on-error: true | |
validation-test: | |
name: Validation tests | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo snap install --classic opentofu | |
sudo apt-get update | |
sudo apt-get install -y just | |
- name: Run tests | |
env: | |
TERM: xterm-256color | |
run: just check |