[update]update README #101
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
# Reference: | |
# - [ようこそdotfilesの世界へ \#Vim - Qiita](https://qiita.com/yutkat/items/c6c7584d9795799ee164) | |
# - [dotfilesのすゝめ | kouki’s blog](https://blog.kmdkuk.com/2022/07/16/dotfilesのすゝめ.html) | |
# - [GitHub Actionsを使って、自分用にカスタムしたArch LinuxのISOイメージを作る](https://zenn.dev/inkohx/articles/3dbe67c0db1322) | |
# - [コンテナ内でのジョブの実行 - GitHub Docs](https://docs.github.com/ja/actions/using-jobs/running-jobs-in-a-container) | |
name: CI | |
on: push | |
jobs: | |
setup-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotfiles | |
run: bash setup/linux/setup.sh | |
setup-ubuntu-plane: | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update packages | |
run: apt-get update && apt-get upgrade -y | |
- name: Install required packages | |
run: apt-get install -y sudo git | |
- name: Setup dotfiles | |
run: bash setup/linux/setup.sh | |
setup-archlinux: | |
runs-on: ubuntu-latest | |
container: archlinux:base | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update packages | |
run: pacman -Syu --noconfirm | |
- name: Install required packages | |
run: pacman -S --noconfirm sudo git | |
- name: Setup dotfiles | |
run: bash setup/linux/setup.sh |