コンフリクトファイルmain #134
Workflow file for this run
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: check test | |
on: | |
push: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
# 全OSで実行lsしてwcで行数を数えるコードを叩いてみる | |
check: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Run ls | |
run: ls | |
- name: Run wc | |
run: ls | wc -l | |
- name: Setup tmate session | |
uses: mxschmitt/action-tmate@v3 |