Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit aa0e2d2

Browse files
authored
Add codespaces-linux smoke test
1 parent 9faa7ff commit aa0e2d2

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Smoke test "codespace-linux" build
2+
3+
on:
4+
workflow_dispatch:
5+
6+
push:
7+
branches: [actions-test]
8+
paths:
9+
- 'containers/codespaces-linux/**'
10+
pull_request:
11+
branches:
12+
- main
13+
paths:
14+
- 'containers/codespaces-linux/**'
15+
jobs:
16+
smoke-test:
17+
name: Smoke test
18+
if: "!contains(github.event.head_commit.message, 'Automated update') && !contains(github.event.head_commit.message, 'CI ignore')"
19+
runs-on: ubuntu-latest
20+
steps:
21+
22+
- name: Checkout
23+
id: checkout
24+
uses: actions/checkout@v2
25+
26+
- name: Smoke test
27+
id: smoke_test
28+
uses: ./.github/actions/smoke-test
29+
with:
30+
definition: codespaces-linux
31+
image: mcr.microsoft.com/vscode/devcontainers/universal:dev-linux
32+
user: codespace

0 commit comments

Comments
 (0)