diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c63dbca..674d0e7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,10 +1,7 @@ name: Release -on: - push: - branches: - - master +on: push jobs: - build: + test&build: runs-on: ubuntu-18.04 strategy: matrix: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index ab4fc61..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Test & Build -on: - push: - branches-ignore: - - master -jobs: - build: - runs-on: ubuntu-18.04 - strategy: - matrix: - go: ['1.11', '1.12', '1.13'] - name: Go ${{ matrix.go }} sample - steps: - - uses: actions/checkout@master - - name: Setup go - uses: actions/setup-go@v1 - with: - go-version: ${{ matrix.go }} - - run: go run main.go \ No newline at end of file