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:
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 .