Add a simple CI workflow for compiling Cytoplasm. #27

Merged
jordan merged 12 commits from ci into master 2024-01-13 16:08:45 +00:00
Showing only changes of commit 6a6d379622 - Show all commits

View file

@ -4,8 +4,12 @@ on: [push]
jobs: jobs:
Compile-Cytoplasm: Compile-Cytoplasm:
strategy:
matrix:
os: [alpine-v3.19]
arch: [x86, x86_64]
# TODO: Add more architectures # TODO: Add more architectures
runs-on: alpine-v3.19 runs-on: ["${{ matrix.os }}", "${{ matrix.arch }}"]
steps: steps:
- name: Check out repository. - name: Check out repository.
uses: actions/checkout@v3 uses: actions/checkout@v3