Merge pull request #37 from tj-actions/renovate/tj-actions-verify-cha… #148
This file contains 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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Test setup-bin | |
runs-on: ${{ matrix.platform }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: shellcheck | |
uses: reviewdog/action-shellcheck@v1 | |
- name: Run setup-bin go package | |
id: setup-bin-go | |
uses: ./ | |
with: | |
token: ${{ secrets.PAT_TOKEN }} | |
repository-owner: tj-actions | |
repository: auto-doc | |
language-type: go | |
- name: Show output | |
run: | | |
echo "setup-bin-go: ${{ steps.setup-bin-go.outputs.binary_path }}" | |
- name: Run setup-bin rust package | |
id: setup-bin-rust | |
uses: ./ | |
with: | |
token: ${{ secrets.PAT_TOKEN }} | |
repository-owner: tj-actions | |
repository: json2file | |
language-type: rust | |
- name: Show output | |
run: | | |
echo "setup-bin-rust: ${{ steps.setup-bin-rust.outputs.binary_path }}" |