Skip to content

Ci actions

Ci actions #4

Workflow file for this run

name: Dummy Build
on: [push, pull_request]
jobs:
build_wheels:
if: github.ref == 'refs/heads/main' || github.event_name != 'push'
name: Dummy build
runs-on: ubuntu-latest
steps:
- name: Build
run: echo "Building ..."
release_wheels:
name: Dummy release
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- name: Release
run: echo "Releasing ..."