fix: isolate overmind socket #6
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: ci | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- httpbin/** | |
- .github/workflows/httpbin.yml | |
jobs: | |
httpbin-test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Fluent CI | |
uses: fluentci-io/setup-fluentci@v5 | |
with: | |
wasm: true | |
plugin: rust | |
args: | | |
target_add wasm32-unknown-unknown | |
build --release --target wasm32-unknown-unknown | |
working-directory: httpbin | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Start Httpbin Server | |
run: | | |
fluentci run target/wasm32-unknown-unknown/release/httpbin.wasm start | |
fluentci run target/wasm32-unknown-unknown/release/httpbin.wasm stop | |
working-directory: httpbin | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NIX_CONFIG: extra-access-tokens = github.com=${{ secrets.GH_ACCESS_TOKEN }} |