From 9d78dc6418c79a9f3725878cf53958a91339edc5 Mon Sep 17 00:00:00 2001 From: Colleague Riley <50218871+ColleagueRiley@users.noreply.github.com> Date: Fri, 19 Apr 2024 20:11:10 -0400 Subject: [PATCH] Create linux.yml --- .github/workflows/linux.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/linux.yml diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml new file mode 100644 index 0000000..36e06b2 --- /dev/null +++ b/.github/workflows/linux.yml @@ -0,0 +1,22 @@ +name: linux + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: apt-update + run: sudo apt-get update + - name: apt + run: sudo apt-get install mesa-common-dev libglx-dev libxcursor-dev libxrandr-dev + - name: make + run: make +