Skip to content

Commit

Permalink
Added build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaslaurenson committed Jan 9, 2024
1 parent 8393692 commit 9e03402
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build

on:
push:
branches:
- "*"

jobs:
build_linux:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4

- name: Check source
run: pwd; ls -lisa

- name: Check cmake version
run: cmake --version

- name: Check gcc version
run: gcc --version

0 comments on commit 9e03402

Please sign in to comment.