Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
Created a basic CI workflow
  • Loading branch information
Az-r-ow authored Feb 22, 2024
1 parent ec8683c commit 3a11976
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Initialize Submodules
run: git submodule init

- name: Update Submodules
run: git submodule update

- name: Build
run: source /scripts/build.sh

- name: Test
run: source /scripts/tests.sh

0 comments on commit 3a11976

Please sign in to comment.