mirror of
https://github.com/GNS3/gns3-gui.git
synced 2026-05-17 00:46:01 +03:00
20 lines
306 B
YAML
20 lines
306 B
YAML
name: testing
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Build and run Docker image
|
|
run: |
|
|
docker build -t gns3-gui-test .
|
|
docker run gns3-gui-test
|