diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2022-08-27 13:50:26 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2022-09-01 22:33:01 +0300 |
| commit | 61dff0fc1f3f0fc1b633c54744fe63d2633a79a2 (patch) | |
| tree | 5396e35f4575a1ce249439d8018d45460dcbc0f2 /.github | |
| download | openvpn-mintotp-61dff0fc1f3f0fc1b633c54744fe63d2633a79a2.tar.gz | |
Initial commit.v0.0.1
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..e0b99f3 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,15 @@ +name: "Build" +on: + pull_request: + push: +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.4.0 + - uses: cachix/install-nix-action@v15 + with: + extra_nix_config: | + access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} + - run: nix build + - run: pip install . |
