mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-25 08:47:18 +02:00
Fix due tag color
This commit is contained in:
parent
0b13669028
commit
42bbc09168
5 changed files with 70 additions and 30 deletions
23
.github/workflows/ci.yml
vendored
23
.github/workflows/ci.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
on: [push, pull_request]
|
||||
on: [pull_request]
|
||||
|
||||
name: CI
|
||||
|
||||
|
@ -20,6 +20,9 @@ jobs:
|
|||
test:
|
||||
name: Test Suite
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
TASKRC: taskwarrior-testdata/.taskrc
|
||||
TASKDATA: taskwarrior-testdata/.task
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
|
@ -28,6 +31,13 @@ jobs:
|
|||
toolchain: stable
|
||||
override: true
|
||||
- run: sudo apt-get update && sudo apt-get install -y taskwarrior taskd
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
repository: kdheepak/taskwarrior-testdata
|
||||
path: taskwarrior-testdata
|
||||
- run: |
|
||||
# prepare taskwarrior, initial setup
|
||||
task rc.confirmation=off || echo 0
|
||||
- uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: test
|
||||
|
@ -65,6 +75,9 @@ jobs:
|
|||
args: -- -D warnings
|
||||
grcov:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
TASKRC: taskwarrior-testdata/.taskrc
|
||||
TASKDATA: taskwarrior-testdata/.task
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install toolchain
|
||||
|
@ -73,6 +86,14 @@ jobs:
|
|||
toolchain: nightly
|
||||
override: true
|
||||
profile: minimal
|
||||
- run: sudo apt-get update && sudo apt-get install -y taskwarrior taskd
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
repository: kdheepak/taskwarrior-testdata
|
||||
path: taskwarrior-testdata
|
||||
- run: |
|
||||
# prepare taskwarrior, initial setup
|
||||
task rc.confirmation=off || echo 0
|
||||
- name: Execute tests
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue