Skip to content

[infra] Trigger GitHub Actions workflow on pushes to the experimental… #1

[infra] Trigger GitHub Actions workflow on pushes to the experimental…

[infra] Trigger GitHub Actions workflow on pushes to the experimental… #1

Workflow file for this run

name: build
on:
workflow_dispatch: {}
push:
branches:
- jbion/github-build
jobs:
test-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Run tests
run: ./amper test
test-macos:
runs-on: macos-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Run tests
run: ./amper test
test-windows:
runs-on: windows-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Run tests
run: ./amper test