From b6579234748a1dde234f41084b2dfd555b8bc8c1 Mon Sep 17 00:00:00 2001 From: v420v Date: Sat, 11 Nov 2023 22:59:08 +0900 Subject: [PATCH] Add ci.yml --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..98ee6a6 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: CI + +on: + push: + branches: [main] +jobs: + build: + strategy: + matrix: + os: ["ubuntu-latest"] + runs-on: ${{ matrix.os }} + + steps: + - name: Checkout ${{ github.event.repository.name }} + uses: actions/checkout@v2 + + - name: Build ${{ github.event.repository.name }} + run: make + + - name: make self + run: make self