Skip to content

Commit

Permalink
Add ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
v420v committed Nov 11, 2023
1 parent 4a16b08 commit b657923
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b657923

Please sign in to comment.