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

ci.yml 855 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
35
36
37
38
39
40
41
42
  1. ---
  2. name: "CV application"
  3. on:
  4. push:
  5. pull_request:
  6. branches:
  7. - main
  8. push:
  9. branches:
  10. - main
  11. permissions:
  12. contents: read
  13. jobs:
  14. build:
  15. runs-on: "${{ matrix.os }}"
  16. strategy:
  17. matrix:
  18. os:
  19. - ubuntu-latest
  20. - windows-latest
  21. python-version:
  22. - "3.9"
  23. steps:
  24. -
  25. uses: actions/checkout@v3
  26. -
  27. name: "Set up Python ${{ matrix.python-version }}"
  28. uses: actions/setup-python@v3
  29. with:
  30. python-version: "${{ matrix.python-version }}"
  31. -
  32. name: "Install dependencies"
  33. run: |
  34. python -m pip install --upgrade pip
  35. pip install flake8 pytest tox tox-gh-actions
  36. pip install -r requirements.txt
  37. -
  38. name: "Test with tox"
  39. run: tox
Tip!

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

Comments

Loading...