Add support for NetBSD #1514
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
on: | |
pull_request: | |
merge_group: | |
name: Test | |
jobs: | |
tests: | |
runs-on: ubuntu-22.04 | |
needs: [check-msrv, test-msrv, test-stable, clippy] | |
steps: | |
- name: Done | |
run: exit 0 | |
check-msrv: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Checks MSRV | |
run: ./ci.sh check msrv | |
test-msrv: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Tests MSRV | |
run: ./ci.sh test msrv | |
clippy: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Clippy | |
run: ./ci.sh clippy | |
test-stable: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Tests stable | |
run: ./ci.sh test stable | |
test-nightly: | |
runs-on: ubuntu-22.04 | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Tests nightly | |
run: ./ci.sh test nightly | |
#check-stable: | |
#runs-on: ubuntu-22.04 | |
#steps: | |
#- uses: actions/checkout@v2 | |
#- name: Run Tests | |
#run: ./ci.sh check stable | |
#check-nightly: | |
#runs-on: ubuntu-22.04 | |
#continue-on-error: true | |
#steps: | |
#- uses: actions/checkout@v2 | |
#- name: Run Tests | |
#run: ./ci.sh check nightly |