git add bulk_rename rename_tmdb #92
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: Go | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- subdir: hijack | |
- subdir: kot | |
- subdir: koshka | |
- subdir: planner | |
- subdir: shin | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21 | |
- run: mkdir bin | |
- name: Build ${{ matrix.subdir }} | |
run: go build -v -o bin | |
working-directory: ${{ matrix.subdir }} | |
- name: Test ${{ matrix.subdir }} | |
run: go test -v | |
working-directory: ${{ matrix.subdir }} |