-
Notifications
You must be signed in to change notification settings - Fork 7
52 lines (41 loc) · 1.07 KB
/
github_action_test.yml
File metadata and controls
52 lines (41 loc) · 1.07 KB
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
43
44
45
46
47
48
49
50
51
52
name: GithubAction Tests
on:
push:
branches: master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Publish
uses: netlify/actions/cli@master
with:
args: deploy --dir=site --functions=functions
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
# deploy:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: test
# run: |
# echo 'Hello Test'
# echo ${{ secrets.MYSECRETNAME }}
# sh ./my_script_test.sh
# test_python:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Setup python
# uses: actions/setup-python@v1
# with:
# python-version: 3.8
# - name: Install dependencies
# run: |
# pwd
# ls
# python -m pip install --upgrade pip
# pip install -r ./requirements.txt
# - name: Check python version
# run: python --version