Skip to content

Commit

Permalink
Add GH workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Gian Sass committed Feb 21, 2024
1 parent 903896e commit 3c10606
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 28 deletions.
28 changes: 0 additions & 28 deletions .circleci/config.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: NTop CI

# Trigger on every master branch push and pull request
on:
push:
pull_request:
branches:
- master

jobs:
build:
strategy:
matrix:
targetplatform: [x86, x64]

runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run CMake
run: cmake -DCMAKE_BUILD_TYPE=Release .
- name: Run Build
run: cmake --build .

0 comments on commit 3c10606

Please sign in to comment.