Add curl support, and default to use curl, fallback to url. #32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| pull_request: | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: purcell/setup-emacs@master | |
| with: | |
| version: 29.3 | |
| - uses: actions/checkout@v4 | |
| - name: Run tests | |
| run: make package-lint | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| emacs_version: | |
| - 29.3 | |
| - snapshot | |
| steps: | |
| - uses: purcell/setup-emacs@master | |
| with: | |
| version: ${{ matrix.emacs_version }} | |
| - uses: actions/checkout@v2 | |
| - name: Run tests | |
| run: make compile |