Skip to content

Commit

Permalink
Merge pull request #2 from ATTron/chore/sc-57
Browse files Browse the repository at this point in the history
chore: [sc-57] Astroz: setup CI
  • Loading branch information
ATTron authored Jun 25, 2024
2 parents 5e20954 + 13a39e1 commit ba64cfb
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test_zig.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Zig Test

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: List src directory
run: ls -l src

- name: Install Zig
uses: goto-bus-stop/setup-zig@v2
with:
version: 0.13.0

- name: Run Zig Test
run: zig test src/ccsds.zig

0 comments on commit ba64cfb

Please sign in to comment.