From 784aa4ac00efcdb6deba51c9a0a6102c81eafbbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E6=9D=A8?= <1711467488@qq.com> Date: Tue, 26 Nov 2019 09:49:24 +0800 Subject: [PATCH] Create main.yml Former-commit-id: 073f483a87889463960e3eecca3f242a44f130b3 Former-commit-id: a76703fdc34d7458cf07af10e16a2d575d185b4e Former-commit-id: 5bbb3c68fe6735b3a2c10594bd9ede0098518b66 Former-commit-id: e69303190c28c78627845bdf8f269e254c244ae4 [formerly e33e66662f8617da736b0ea2b127851b29f97526] Former-commit-id: 4abfa1b52459b8b982037dbe46affb751bf04f05 Former-commit-id: 853af9be7ac63311cf1b917bc852e38ab391462e Former-commit-id: add16cd2c8ed2c0c5969dc01ab3235f6cf120ec8 Former-commit-id: 8f5e2e98b55a972d665928857882374a8d3deeda Former-commit-id: c8eb6c0fe2b0081abf9408d5435b039231690e8f --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..b2340b24 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,17 @@ +name: CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Run a one-line script + run: echo Hello, world! + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project.