Skip to content

Commit

Permalink
Update and rename automatic-build.yml to test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga authored Jan 30, 2024
1 parent c4fe940 commit ef1ce2d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 17 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/automatic-build.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build and Test Homebrew MetaCall

on:
push:
pull_request:
workflow_dispatch:

jobs:
test:
strategy:
matrix:
os: [macos-latest, macos-12]
runs-on: ${{ matrix.os }}
steps:
- name: Check out the repository
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Build
run: ./build.sh

- name: Test
run: ./test.sh

0 comments on commit ef1ce2d

Please sign in to comment.