docs: update LICENSE #114
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: tests | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
redmine: ["4.2", "5.0"] | |
db: ["sqlite", "mysql", "postgresql"] | |
include: | |
- ruby: "2.7" | |
name: "Ruby ${{ matrix.ruby }} / Redmine ${{ matrix.redmine }} / ${{ matrix.db }}" | |
steps: | |
- name: Execute tests | |
uses: eXolnet/action-redmine-plugin@v1 | |
with: | |
plugin_name: "redmine_wbs" | |
redmine_version: "${{ matrix.redmine }}" | |
ruby_version: "${{ matrix.ruby }}" | |
database: "${{ matrix.db }}" | |
assets: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Yarn | |
run: | | |
corepack enable yarn | |
corepack prepare yarn@stable --activate | |
- name: Install and build assets | |
run: | | |
yarn install | |
yarn run production |