testing.yml 473 B

123456789101112131415161718192021222324
  1. # https://rhysd.github.io/actionlint/
  2. name: Testing
  3. on: [push]
  4. jobs:
  5. linux:
  6. runs-on: ubuntu-latest
  7. steps:
  8. - uses: actions/checkout@v3
  9. - name: Test Linux Build
  10. run: misc/dbuild.sh
  11. macos:
  12. runs-on: macos-latest
  13. steps:
  14. - uses: actions/checkout@v3
  15. - name: Test macOS Build
  16. run: misc/macbuild.sh
  17. macos-13:
  18. runs-on: macos-13
  19. steps:
  20. - uses: actions/checkout@v3
  21. - name: Test macOS Build
  22. run: misc/macbuild.sh