github.com/nyan233/littlerpc@v0.4.6-0.20230316182519-0c8d5c48abaf/.github/workflows/analyse.yml (about) 1 name: Analyse 2 3 on: 4 push: 5 branches: [ main ] 6 pull_request: 7 branches: [ main ] 8 9 jobs: 10 mutli-system-test: 11 strategy: 12 matrix: 13 os: [ubuntu-latest,macos-latest] 14 go_version: ["1.17","1.18"] 15 runs-on: ${{matrix.os}} 16 steps: 17 - name: Install Go 18 uses: actions/setup-go@v2 19 with: 20 go-version: ${{matrix.go_version}} 21 - name: CheckOut Code 22 uses: actions/checkout@v2 23 - name: Lint 24 run: echo go-lint-analyse 25 - name: Cycle 26 run: echo go-cycle-analyse