Skip to content

docs: [#refactor] update repo references and branding to 'Torrust Tra… #104

docs: [#refactor] update repo references and branding to 'Torrust Tra…

docs: [#refactor] update repo references and branding to 'Torrust Tra… #104

Workflow file for this run

name: Testing
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
ci-tests:
runs-on: ubuntu-latest
name: CI-Compatible Tests
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y yamllint shellcheck docker-compose
sudo npm install -g markdownlint-cli
# Install OpenTofu
curl -fsSL https://get.opentofu.org/install-opentofu.sh -o install-opentofu.sh
chmod +x install-opentofu.sh
sudo ./install-opentofu.sh --install-method deb
- name: Run CI test suite
run: make test-ci