fix: #9 apt-get を apt に修正 #16
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 arm64-Ubuntu and macOS | |
# feature/* ブランチへの Push 時に実行 | |
on: | |
push: | |
branches: | |
- feature/* | |
jobs: | |
# ARM64 の Ubuntu 環境での動作確認 | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: linux/arm64 | |
- name: Install required packages | |
run: sudo apt update && sudo apt 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@v2 | |
- name: Install dotfiles | |
run: | | |
yes | ./bin/mac_install.sh \ | |
&& ls -la ~/ | grep .zshrc |