Update mime-db update 1.53.0 #24
Workflow file for this run
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: Julia tests | |
on: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- '**.md' | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
jobs: | |
test: | |
timeout-minutes: 15 | |
runs-on: ${{ matrix.os }} | |
# Uncomment if you want to see all results for all OSses. Otherwise, the first failed test cancels all others | |
# continue-on-error: true | |
strategy: | |
matrix: | |
julia-version: ['1.3', '1.6', '1.10', '1'] | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.julia-version }} | |
- uses: julia-actions/julia-runtest@v1 |