Skip to content

first try create github ci #8

first try create github ci

first try create github ci #8

Workflow file for this run

name: Docker Image
on:
push:
branches: ["main"]
jobs:
build-image-builder:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- name: Build the yanet/builder
run: |
cd docker
docker build -f yanet-builder.Dockerfile -t yanet/builder:unstable .
build-autotest:
needs: build-image-builder
runs-on: ubuntu-latest
container:
image: yanet/builder:unstable
steps:
- run: ls -l