mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-25 23:14:17 +02:00
17 lines
343 B
YAML
17 lines
343 B
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches: [ "feature/continuous-integration", "development" ]
|
|
|
|
jobs:
|
|
linux:
|
|
runs-on: ubuntu-latest
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
pre-entrypoint: '../../scripts/install-development-environment'
|
|
entrypoint: '../../scripts/test'
|
|
steps:
|
|
- run: meson test -C build
|
|
|