-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (32 loc) · 1005 Bytes
/
check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Check
on:
push:
branches: [ main, master, dev ]
paths:
- '**.py'
pull_request:
branches: [ main, master ]
jobs:
Check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker://continuumio/miniconda3
- name: Updating conda
run: conda update --all -y
- name: Installing make
run: conda install -y make
- name: Checkout CI/CD Toolkit
uses: actions/checkout@v2
with:
repository: breakthewall/cicd-toolkit
path: cicd-toolkit
persist-credentials: false
fetch-depth: 0
- name: Checking package
run: |
cd cicd-toolkit
make check-buildenv env=check
conda run -n check make check