This repository was archived by the owner on Aug 16, 2025. It is now read-only.
fix(deps): update module golang.org/x/crypto to v0.41.0 #41
Workflow file for this run
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: | |
| pull_request: | |
| types: ['opened', 'synchronize'] | |
| paths-ignore: | |
| - 'README.md' | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'README.md' | |
| jobs: | |
| unit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.24.x | |
| - name: Run tests | |
| run: make test | |
| #- name: Upload coverage reports to Codecov | |
| # uses: codecov/codecov-action@v4 | |
| # env: | |
| # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| #- name: Upload coverage reports to Codeclimate | |
| # if: github.event_name != 'pull_request' | |
| # uses: paambaati/[email protected] | |
| # env: | |
| # CC_TEST_REPORTER_ID: ${{ secrets.CODECLIMATE_TEST_REPORTER_ID }} | |
| # with: | |
| # prefix: "github.com/mavogel/go-ssh-forward" | |
| # coverageLocations: coverage.txt:gocov |