Skip to content

Commit

Permalink
add build / test to ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rask24 committed Jan 17, 2024
1 parent fa1450d commit 02225db
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 02225db

Please sign in to comment.