We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60053ec commit 47593e4Copy full SHA for 47593e4
.github/Dockerfile
@@ -0,0 +1,10 @@
1
+FROM archlinux:base
2
+
3
+RUN pacman -Syu --noconfirm \
4
+ && pacman -S --noconfirm fish yadm
5
6
+WORKDIR /app
7
+COPY bootstrap.sh bootstrap.sh
8
+RUN chmod +x bootstrap.sh
9
10
+CMD ./bootstrap.sh
.github/bootstrap.sh
@@ -0,0 +1,2 @@
+echo "Bootstrap test..."
+exit 0
.github/workflows/bootstrap.yml
@@ -0,0 +1,20 @@
+name: Bootstrap Test
+on:
+ push:
+ branches:
+ - main
+jobs:
+ test:
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v3
15
16
+ - name: Build Docker image
17
+ run: docker build -f .github/Dockerfile -t arch-bootstrap .github/
18
19
+ - name: Run bootstrap script
20
+ run: docker run --rm arch-bootstrap
0 commit comments