17 lines
371 B
YAML
17 lines
371 B
YAML
name: Build Docker
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set git proxy
|
|
- run: |
|
|
git config --global http.proxy http://10.255.0.1:7890
|
|
git config --global https.proxy http://10.255.0.1:7890
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Build
|
|
run: ls -la
|