Skip to content

Commit

Permalink
Initial build workflow attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
zmoon committed May 2, 2024
1 parent e153072 commit 47c5f01
Showing 1 changed file with 24 additions and 0 deletions.
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: CI

on:
push:
branches: [develop]
pull_request:
workflow_dispatch:

jobs:
build:
name: Build
runs-on: ubuntu-latest
container: noaaepic/ubuntu22.04-intel-spack-unified:srw-dev-v1.5.1
steps:
- name: Check out
uses: actions/checkout@v4
with:
submodules: true

- name: Configure
run: cmake -S . -B build

- name: Build
run: cmake --build build

0 comments on commit 47c5f01

Please sign in to comment.