From 9e33c72484bc3ca2d6dcec6aadb6fd2d82745166 Mon Sep 17 00:00:00 2001 From: Tanishq Dubey Date: Sun, 16 Jun 2024 10:52:18 -0400 Subject: [PATCH] indentation --- .gitea/workflows/run_build.yaml | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/.gitea/workflows/run_build.yaml b/.gitea/workflows/run_build.yaml index 83772c3..e2df725 100644 --- a/.gitea/workflows/run_build.yaml +++ b/.gitea/workflows/run_build.yaml @@ -4,18 +4,16 @@ on: [push] jobs: run-builds: - runs-on: ubuntu-latest - name: Run build container: image: ubuntu:latest - steps: - - name: Checkout repo - uses: actions/checkout@v2 - - name: Run ls - run: ls - - name: Install things - run: apt update && apt install build-essential cmake libsdl2-dev libexiv2-dev mesa-utils - - name: Generate - run: cmake . - - name: Build - run: cmake --build . + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: Run ls + run: ls + - name: Install things + run: apt update && apt install build-essential cmake libsdl2-dev libexiv2-dev mesa-utils + - name: Generate + run: cmake . + - name: Build + run: cmake --build .