chore: #9 v1 に修正 #19
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 install script on Ubuntu and macOS | |
# feature/* ブランチへの Push 時に実行 | |
on: | |
push: | |
branches: | |
- feature/* | |
jobs: | |
# ARM64 の Ubuntu 環境での動作確認 | |
ubuntu: | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v1 | |
- name: Install required packages | |
run: apt-get update && apt-get install -y git sudo | |
- name: Install dotfiles | |
run: | | |
echo $SHELL | |
uname -a | |
yes | ./bin/ubuntu_install.sh \ | |
&& ls -la ~/ | grep .zshrc | |
# macOS 環墨での動作確認 | |
macos: | |
runs-on: macos-14 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v1 | |
- name: Install dotfiles | |
run: | | |
yes | ./bin/mac_install.sh \ | |
&& ls -la ~/ | grep .zshrc |