Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

main.yml 779 B

You have to be logged in to leave a comment. Sign In
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
  1. # This is a basic workflow to help you get started with Actions
  2. name: CI
  3. # Controls when the action will run.
  4. on: [push]
  5. jobs:
  6. build:
  7. runs-on: ubuntu-latest
  8. strategy:
  9. matrix:
  10. #python-version: [3.7, 3.8, 3.9]
  11. python-version: [3.8]
  12. steps:
  13. - uses: actions/checkout@v2
  14. - name: Set up Python ${{ matrix.python-version }}
  15. uses: actions/setup-python@v2
  16. with:
  17. python-version: ${{ matrix.python-version }}
  18. - name: Install dependencies
  19. run: |
  20. python -m pip install -U pip
  21. pip install setuptools wheel
  22. - name: Build
  23. run: |
  24. python setup.py bdist_wheel
  25. # test:
  26. # name: Run tests, build package, build image, deploy
  27. # runs-on: ubuntu-latest
  28. # steps:
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...