From 02225dbeb46cbacc5f41471c0e16cd30928c6d92 Mon Sep 17 00:00:00 2001 From: rask24 Date: Wed, 17 Jan 2024 18:44:41 +0900 Subject: [PATCH] add build / test to ci.yml --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2dcb567..4c25664 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,3 +14,21 @@ jobs: python3 -m pip install norminette - name: Run Norminette run: make norm + build: + name: build + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + - name: Build push_swap + run: make + test: + name: test + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + - name: Build push_swap + run: make + - name: Test + run: make test