indentation
Some checks failed
Run Build / run-builds (push) Failing after 4s

This commit is contained in:
Tanishq Dubey 2024-06-16 10:52:18 -04:00
parent 498f209287
commit 9e33c72484

View File

@ -4,18 +4,16 @@ on: [push]
jobs: jobs:
run-builds: run-builds:
runs-on: ubuntu-latest
name: Run build
container: container:
image: ubuntu:latest image: ubuntu:latest
steps: steps:
- name: Checkout repo - name: Check out repository code
uses: actions/checkout@v2 uses: actions/checkout@v4
- name: Run ls - name: Run ls
run: ls run: ls
- name: Install things - name: Install things
run: apt update && apt install build-essential cmake libsdl2-dev libexiv2-dev mesa-utils run: apt update && apt install build-essential cmake libsdl2-dev libexiv2-dev mesa-utils
- name: Generate - name: Generate
run: cmake . run: cmake .
- name: Build - name: Build
run: cmake --build . run: cmake --build .