esync

Directory watching and remote syncing
Log | Files | Refs | README | LICENSE

ci.yml (365B)


      1 name: CI
      2 
      3 on:
      4   pull_request:
      5     branches: [main]
      6 
      7 jobs:
      8   test:
      9     runs-on: ubuntu-latest
     10     steps:
     11       - uses: actions/checkout@v4
     12 
     13       - uses: actions/setup-go@v5
     14         with:
     15           go-version-file: go.mod
     16 
     17       - name: Vet
     18         run: go vet ./...
     19 
     20       - name: Test
     21         run: go test ./... -v
     22 
     23       - name: Build
     24         run: go build ./...