Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
Added start of CI
  • Loading branch information
emoon committed Feb 2, 2024
1 parent 74aa93b commit 772ce58
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: C/C++ CI

Check failure on line 1 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / linux_matrix (ubuntu-22.04, 14)

.github/workflows/ci.yml#L1

This run was manually canceled.

on:
push:
branches: [ "master", "dev" ]
pull_request:
branches: [ "master", "dev" ]

jobs:
linux_matrix:
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-20.04]
version: [10, 12, 14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: make
run: make

0 comments on commit 772ce58

Please sign in to comment.