docs: simplify runtime updates feature description in README #820
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: tests | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Test Fox | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go: [ '>=1.24' ] | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| cache: false | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Run tests | |
| run: go test -v -coverprofile=coverage.txt -covermode=atomic ./... | |
| - name: Run data races tests | |
| run: go test -v -race -run "TestDataRace|TestRaceHostnamePathSwitch" -count=10 ./... | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| fail_ci_if_error: true | |
| files: ./coverage.txt | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| lint: | |
| name: Lint Fox | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go: [ '>=1.24' ] | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| cache: false | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Run linter | |
| uses: golangci/golangci-lint-action@v9 |