Skip to content

Commit

Permalink
feat: commit the basic code
Browse files Browse the repository at this point in the history
Signed-off-by: Xinwei Xiong(cubxxw-openim) <[email protected]>
  • Loading branch information
cubxxw committed Jun 20, 2023
1 parent 2910d2e commit 20c2eb4
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
name: CI
on: [push]

jobs:
hello_world_job:
test:
name: Test
runs-on: ubuntu-latest
name: A job to say hello
steps:
- name: Hello world action step
id: hello
uses: actions/hello-world-docker-action@v2
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
who-to-greet: 'Kubecub && cubxxw'
# Use the output from the `hello` step
- name: Get the output time
run: echo "The time was ${{ steps.hello.outputs.time }}"
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Download modules
run: go get -d -v ./...
- name: Test
run: go test ./...

0 comments on commit 20c2eb4

Please sign in to comment.