Skip to content

feature: create build workflow #2

feature: create build workflow

feature: create build workflow #2

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- main
jobs:
build-atomic:
runs-on: ubuntu-latest
strategy:
matrix:
images:
- atomic-base
- atomic-gnome
- atomic-kde
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Just
uses: extractions/setup-just@v1
- name: Setup Podman
run: |
brew install podman
- name: Build Image
run: |
just build-atomic ${{ matrix.images }}