tinty 0.2.1

Change the theme of your terminal, text editor and anything else with one command!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Run tests
on:
  push:
    branches:
      - main
  pull_request:

jobs:
  run:
    runs-on: ubuntu-latest
    steps:
      # Checkout repo
      - name: Fetch the repository code
        uses: actions/checkout@v4

      # Run tests
      - uses: dtolnay/rust-toolchain@stable
      - run: ENV RUST_TEST_THREADS=1 cargo test