Skip to content

Change default for 8 #308

Change default for 8

Change default for 8 #308

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [stable, unstable, development-target]
container:
image: ghcr.io/elementary/docker:${{ matrix.version }}
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
apt update
apt install -y exif librsvg2-bin meson
- name: Test Metadata
run: bash tests.sh
- name: Build
run: |
meson build
ninja -C build install
- name: Build (Early Access)
run: |
meson configure build -Dearly_access=true
ninja -C build install