Skip to content

Commit

Permalink
container: add ci checks
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpollo committed Oct 11, 2024
1 parent 0b329c9 commit daeff70
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ubuntu_checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Check Ubuntu Developer Environment

on:
push:
branches:
- 'main'
- 'stable'
- 'beta'
- 'release/**'
pull_request:
branches:
- '*'

jobs:
build:
runs-on: [runs-on,runner=8cpu-linux-x64,"image=ubuntu24-full-x64","run-id=${{ github.run_id }}"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Build Docker Image
run: |
./Tools/container/docker_build.sh
- name: Test Docker Works
run: |
./Tools/container/docker_run.sh

0 comments on commit daeff70

Please sign in to comment.