docker_practice/cases/ci/actions/README.md

29 lines
558 B
Go
Raw Permalink Normal View History

# GitHub Actions
GitHub [Actions](https://github.com/features/actions) 是 GitHub 推出的一款 CI/CD 工具。
`job` `step` 使 Docker
```yaml
on: push
name: CI
jobs:
my-job:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 2
- name: run docker container
uses: docker://golang:alpine
with:
args: go version
```
##
* [Actions Docs](https://docs.github.com/en/actions)