Skip to content

Commit

Permalink
ci: add simple image build tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis authored and tiborsimko committed Sep 15, 2022
1 parent e58470c commit 64a8256
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file is part of REANA.
# Copyright (C) 2022 CERN.
#
# REANA is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.

name: CI

on: [push, pull_request]

jobs:
lint-dockerfile:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Check Dockerfile compliance
run: docker run -i --rm hadolint/hadolint:v1.18.2 < Dockerfile

build-docker:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Build image
run: docker build -t reanahub/reana-auth-rucio .

0 comments on commit 64a8256

Please sign in to comment.