Skip to content

Commit

Permalink
Fix paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
jzohrab committed Nov 1, 2023
1 parent 686c3ed commit 8668f4a
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: ci

on:
push:
branches: [ "develop", "master" ]
branches: [ "develop", "master", "fix_github_ci" ]
pull_request:
branches: [ "develop", "master" ]

Expand Down Expand Up @@ -33,10 +33,12 @@ jobs:

- name: Setup config
run: |
mkdir ./data
echo "ENV: dev" > config/config.yml
echo "DATAPATH: ./data" >> config/config.yml
echo "DBNAME: test_lute.db" >> config/config.yml
mkdir ${{ github.workspace }}/data
echo "ENV: dev" > ${{ github.workspace }}/config/config.yml
echo "DATAPATH: ${{ github.workspace }}/data" >> ${{ github.workspace }}/config/config.yml
echo "DBNAME: test_lute.db" >> ${{ github.workspace }}/config/config.yml
ls ${{ github.workspace }}
cat ${{ github.workspace }}/config/config.yml
- name: Lint
run: inv lint
Expand Down

0 comments on commit 8668f4a

Please sign in to comment.