Skip to content

Commit

Permalink
Add a test pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
postgres-dev committed Dec 28, 2023
1 parent a0dfeca commit 0897a04
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Test pipeline

on:
#push:
# branches:
# - "**"
# Runs triggered by pull requests are disabled to prevent executing potentially unsafe code from public pull requests
# pull_request:
# branches:
# - main

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:

job1:

runs-on:
# - windows-2019
- macos-latest
env:
zlib_dir: C:\dep\zlib

steps:

- uses: actions/checkout@v2

- name: Run a command
run: |
pwd
mkdir aaa
readlink -f aaa
readlink -f bbb

0 comments on commit 0897a04

Please sign in to comment.