X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=.github%2Fworkflows%2Fmacos.yml;fp=.github%2Fworkflows%2Fmacos.yml;h=09ab99e31ed4a7124e59ffd9abba5e5bfad91cd9;hb=120efebd21c9899a12651bd04e24d37f1d6f2571;hp=0000000000000000000000000000000000000000;hpb=2e2a003e118803b164b17bed666c10c829480564;p=chaz%2Fp5-File-KDBX diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..09ab99e --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,31 @@ +name: macOS + +on: + push: + branches: ["*"] + pull_request: + branches: ["*"] + +jobs: + unit-tests: + name: "Test perl on macOS" + + runs-on: macos-latest + + steps: + - name: Install perl + run: | + brew install perl cpanminus + perl -MConfig -e'print $Config{installscript}' >>$GITHUB_PATH + - name: Print perl version + run: perl -V + - name: Install dzil + run: cpanm -n Dist::Zilla + - name: Checkout code + uses: actions/checkout@v3 + - name: Install author dependencies + run: dzil authordeps --missing |cpanm -n + - name: Install module dependencies + run: dzil listdeps --develop --missing |cpanm -n + - name: Run tests + run: dzil smoke --author --release