-
Notifications
You must be signed in to change notification settings - Fork 14
35 lines (28 loc) · 862 Bytes
/
e2e.yml
File metadata and controls
35 lines (28 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: End-to-End Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
e2e-test:
name: E2E Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.91
targets: wasm32-wasip2
- name: Install Spin
shell: bash
run: |
curl -fsSL https://spinframework.dev/downloads/install.sh | bash -s -- -v v3.6.0
mv spin /usr/local/bin/
- name: Install pluginify
shell: bash
run: spin plugins install --url https://github.com/itowlson/spin-pluginify/releases/download/canary/pluginify.json --yes
- name: Run E2E tests
run: ./test/e2e.sh