Skip to content

try new workflow config #2 #291

try new workflow config #2

try new workflow config #2 #291

Workflow file for this run

name: test
on:
push:
branches:
- master
- develop
pull_request:
branches:
- develop
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: login to ghcr
uses: docker/login-action@v3
with:
registry: ghcr.io
username: cars10
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
pull: true
file: docker/Dockerfile_ci
tags: ghcr.io/cars10/elasticvue_ci:latest
- name: run tests
run: make CI=1 ci