Refactor the release json a bit and put it in a published location #213
This file contains 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: main | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 0 * * 0" | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
version: [3.7, 3.x] | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{matrix.version}} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: latest | |
- run: npm install @antora/cli @antora/site-generator | |
- run: echo "$PWD/node_modules/.bin" >> "$GITHUB_PATH" | |
- run: ./plano test |