Skip to content

Adding the usage of Github Actions for CI #7881

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Docker Image CI

on: [push, pull_request]


jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.8

- name: Install Curl
run: sudo apt install libcurl4-openssl-dev libssl-dev

- name: Build
run: make build

- name: Tests
if: always()
run: make tests

- name: Lint
if: always()
run: make lint

- name: Dependencies
if: always()
run: make deps

- name: Licenses
if: always()
run: make licenses

- name: Documentation
if: always()
run: make docs

- name: Translations
if: always()
run: make translations

- name: Static Tests
if: always()
run: make static_tests

- name: Static Pipeline
if: always()
run: make static_pipeline