Skip to content

Commit

Permalink
[#216] First attempt at build workflow;
Browse files Browse the repository at this point in the history
  • Loading branch information
jlucas9 committed Jun 13, 2024
1 parent 4114fe9 commit f7d1b23
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: [ main, dev ]
pull_request:
branches: [ main, dev ]

jobs:
fsw:
# Container setup
runs-on: ubuntu-latest
container:
image: ivvitc/nos3-64:dev
steps:
- uses: actions/checkout@v2
- name: Update
run: sudo apt-get update
- name: Install dependencies
run: sudo apt-get install -y python3
- name: fsw
run: make config fsw

0 comments on commit f7d1b23

Please sign in to comment.