16 lines
538 B
YAML
16 lines
538 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
non-lab:
|
|
runs-on: docker
|
|
#container:
|
|
# image: ghcr.io/opentofu/opentofu:1.7.2
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
sparse-checkout: |
|
|
non-lab
|
|
- name: Setup OpenTofu
|
|
run: curl -fsSl https://get.opentofu.org/install-opentofu.sh -o /tmp/install-opentofu.sh; chmod +x /tmp/install-opentofu.sh; /tmp/install-opentofu.sh --install-method deb; rm -f /tmp/install-opentofu.sh; cd non-lab
|
|
- name: Tree
|
|
run: apt update; apt install tree; tree
|