We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7950774 commit b29217fCopy full SHA for b29217f
1 file changed
.github/workflows/un_fichier_yaml.yml
@@ -0,0 +1,26 @@
1
+name: Un fichier Yaml d'action Github
2
+
3
+on: [push]
4
5
+jobs:
6
+ lint:
7
+ runs-on: ubuntu-18.04
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - run: echo "Ici on lint"
11
+ - run: pip3 install flake8
12
+ - run: flake8 template_model
13
+ test:
14
15
16
17
+ - run: echo "Ici on tests"
18
+ - run: pip install
19
+ - run: pip install Django==2.2 -U #FIXME
20
+ - run: coverage run --source=template_model ./manage.py test
21
+ - run: codecov
22
+ deploy:
23
24
25
+ - run: echo "Ici on déploie"
26
0 commit comments